@extends('frontend.layouts.master') @section('title') Events @endsection @section('main-content') @include('frontend.layouts.notification')

Events

@if(count($events)>0) @foreach($events as $event)
@php $photo=explode(',',$event->photo); @endphp
{{$event->created_at->format('d M , Y. D')}}

{{$event->title}}

Read more +
@endforeach @endif
@endsection