@extends('website.layouts.app') @section('meta_title', "Techne") @section('meta_description', "Techne") @section('meta_keywords','Techne') @section('content')
@if (! empty($workshopPageSettings['workshop_page_header_description']) || ! empty($workshopPageSettings['workshop_page_header_btn_link']))

{{ __('app.Workshops') }}

@if(! empty($workshopPageSettings['workshop_page_header_description'])) {!! html_entity_decode($workshopPageSettings['workshop_page_header_description']) !!} @endif
@if(! empty($workshopPageSettings['workshop_page_header_btn_link'])) {{ $workshopPageSettings['workshop_page_header_btn_title'] }} @endif
@endif

{{ __('app.Workshops') }}

@if($locations->count() > 0)
@if($selectedLocation) @endif
@endif
@forelse ($workshops as $workshop)
{{ $workshop->title }}
{{ $workshop->level?->label() }}
{{ Str::limit($workshop->title, 44, '...') }}
@if ($workshop->speaker)
{{ $workshop->speaker->name }}
@if ($workshop->speaker->job_title)
{{ Str::limit($workshop->speaker->job_title, 27, '...') }}
@endif @endif @if ($workshop->language)
{{ $workshop->language }}
@endif @if ($workshop->location)
{{ $workshop->location }}
@endif
@if ($workshop->short_description) {{ Str::limit($workshop->short_description, 64, '...') }} @endif
@if(! empty($workshopPageSettings['workshop_card_who_can_attend']))
{{ __('app.Who can attend') }}
{{ $workshopPageSettings['workshop_card_who_can_attend'] }}
@endif
@empty

Stay tuned

@endforelse
{{ $workshops->withQueryString()->links('website.layouts.pagination') }} {{-- $workshops->onEachSide(1)->withQueryString()->links() --}}
@include('website.sections.subscribe-form') @endsection