@extends('layouts.master') @section('title', 'Event Details') @section('breadcrumb-text')

{{ __('Event Details')}}

{!! renderIconHtml('back') !!}{{ __('Back')}}
@endsection @section('content')
{{__('Title')}} :
{{ $event->title ?? '' }}
{{__('Description')}} :
{!! $event->description ?? '-' !!}
{{__('Start')}} :
@if(isset($event->start_datetime)) {!! getDateWithIcon($event->start_datetime) !!} @else - @endif
{{__('End')}} :
@if(isset($event->end_datetime)) {!! getDateWithIcon($event->end_datetime) !!} @else - @endif
{{__('Full Day')}} :
{{ $event->is_full_day ? 'Yes' : 'No' }}
{{__('Recurring')}} :
{{ $event->is_recurring ? 'Yes' : 'No' }}

Upcoming Occurrences (max 500)
# {{ __('Date') }} {{ __('Title') }} {{ __('Action') }}
@forelse($occurrences as $i => $occ) @php $occKey = $occ->format('Y-m-d H:i:s'); $exception = $event->exceptions->where('occurrence_datetime', $occKey)->where('type','edit')->first(); $title = $exception && $exception->title ? $exception->title : $event->title; @endphp @empty @endforelse
{{ $i+1 }} {!! getDateWithIcon($occ) !!} {{ $title }} {!!renderIconHtml('edit')!!} Edit
{{ __('No Data Found') }}
@endsection @push('scripts') @endpush