@extends("front.$version.layout") @section('styles') @endsection @section('pagename') - {{__('Events')}} @endsection @section('meta-keywords', "$be->events_meta_keywords") @section('meta-description', "$be->events_meta_description") @section('breadcrumb-title', convertUtf8($bs->event_title)) @section('breadcrumb-subtitle', convertUtf8($bs->event_subtitle)) @section('breadcrumb-link', __('Events')) @section('content') {{__('Choose an option')}} @foreach($event_categories as $event_category) input('category') == $event_category->id ? 'selected' : ''}}>{{$event_category->name}} @endforeach {{__('Search')}} {{__('Events')}} {{__('Our Upcoming Events')}} @if (count($events) > 0) @foreach($events as $event) @php $images = json_decode($event->image, true); @endphp {{__('BUY TICKET')}} {{$event->eventCategories->name}} {{$bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : ''}}{{$event->cost}}{{$bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : ''}} {{strlen($event->title) > 30 ? mb_substr($event->title,0,30,'utf-8') . '...' : $event->title}} {{$event->organizer}} {{date_format(date_create($event->date),"d/m/Y")}} @endforeach @else {{__('NO EVENT FOUND')}} @endif {{$events->appends(['title' => request()->input('title'),'location' => request()->input('location'),'category' => request()->input('category'),'date' => request()->input('date')])->links()}} @endsection @section('scripts') @endsection