@section('content')

ALL EVENTS {{ $events->getTotal() }} results.

@if($active_view=='list') List View Map View @else List View Map View @endif
{{--
Sort By:
--}}
@if(! $events->isEmpty())
@foreach($events as $event)
{{ $event->title }}

{{ Str::limit($event->title, 40) }}

{{ date('M j - g:i A', strtotime($event->start_time)) }}
{{ Str::limit($event->place_name, 32) }}
Details
@endforeach
{{ $events->appends($form_fields)->links() }} @else No Events found. @endif
@endsection @section('scripts') @endsection