@extends('frontend.master', ['activePage' => 'event']) @section('content') {{-- breadcrumbs --}} @include('frontend.layout.breadcrumbs', [ 'title' => __('Events'), 'page' => __('Events'), ]) {{-- page content --}}

{{count($events)}} {{__('events found')}}

@if(isset($category))
{{$category->name}}
@endif @if(isset($type))
{{$type}}
@endif @if(isset($chip) && count($chip)>0) @foreach ($chip as $item)
{{$item}}
@endforeach @endif
@if(count($events) == 0)
{{__('No Events found')}}!
@else @foreach ($events as $item)
@if(Auth::guard('appuser')->check()) @else @endif
{{$item->start_time->format('l').', '.$item->start_time->format('d F Y')}}
{{__('More Detail')}}
@endforeach @endif
@endsection