@extends('layouts.main') @section('title', 'Nomadic-Events') @section('content')

{{__('Events')}}

{{__('Discover events')}}

@if($events->count() > 0) @foreach($events as $event)

{{date('l, d M',strtotime($event->event_date))}} AT {{date('h:i A',strtotime($event->event_time))}}

{{ucfirst($event->event_title)}}

@if($event->event_type=='online')

{{$event->event_type}}

@endif @if($event->event_type=='location' && $event->address!='')

{{$event->address}}

@endif
{{$event->interested_count}} interested - {{$event->going_count}} going
@if($event->public_private=='public')
@endif
@endforeach @endif
@endsection @section('footer_scripts') @endsection