@extends('frontend.layouts.master') @section('title') Events @endsection @section('main-content')
@if($events) @foreach($events as $event)
@php $photo=explode(',',$event->photo); @endphp

{{$event->title}}

{!! substr($event->description, 0, 100) !!}

@endforeach @endif
@endsection