@extends('frontend.layout') @section('pageHeading') @if (!empty($pageHeading)) {{ $pageHeading->organizer_page_title ?? __('Organizer') }} @else {{ __('Organizer') }} @endif @endsection @php $metaKeywords = !empty($seo->meta_keyword_organizer) ? $seo->meta_keyword_organizer : ''; $metaDescription = !empty($seo->meta_description_organizer) ? $seo->meta_description_organizer : ''; @endphp @section('meta-keywords', "{{ $metaKeywords }}") @section('meta-description', "$metaDescription") @section('hero-section')
@endsection @section('content')
{{ __('Total organizer showing') }}: {{ count($collection) }}
@foreach ($collection as $item)
@if ($item->photo == null) image @else image @endif
{{ @$item->organizer_info->name }}
{{ OrganizerEventCount($item->id) }} {{ OrganizerEventCount($item->id) > 1 ? __('Events') : __('Event') }}
{{ __('View Profile') }}
@endforeach
{{ $collection->links() }} @if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif
@endsection