@extends('layouts.front.'.$namespaceName.'.master')
@section('title')
{{$title}}
@endsection
@section('content')
{{__('guest/public_events.public_events')}}
@foreach($public_events as $public_event)
-
{{__('guest/public_events.host_name')}} : {{$public_event->host_name}}
-
{{__('guest/public_events.event_takes_place_in')}} : {{$public_event->location}}
-
{{__('guest/public_events.event_start_at')}} : {{humanDateTime($public_event->start_date)}}
-
{{__('guest/public_events.event_end_in')}} : {{humanDateTime($public_event->end_date)}}
@endforeach
@endsection