@extends('layouts.frontend.app') @section('content')
@php $file = getStorage($event->image); @endphp Event Image

{{ $event->title }}

{{ $event->location }}

{{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $event->schedule)->format('l, j F Y H:i') }}

{{ $event->pic ? $event->pic : '-' }}

{{ $event->phone ? $event->phone : '-' }}

{!! $event->description !!}
Other Events
@if (count($otherEvents) > 0)
@foreach ($otherEvents as $item)

{{ $item->title }}

@endforeach
@else

Artikel lainnya lagi kosong!

@endif
@endsection