@extends('front.layouts.app') @section('content')

{!! $title !!}

@if($notes_events->total()) @foreach($notes_events as $eventNote)
{!! convertUtcToLocal($eventNote->updated_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! $eventNote->notes !!}
@endforeach @else

No event notes found!

@endif
@if($notes_contents->total()) @foreach($notes_contents as $contentNote)
{!! convertUtcToLocal($contentNote->updated_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! $contentNote->notes !!}
@endforeach @else

No on demand notes found!

@endif
@endsection @section('js') @endsection