@extends('layouts.main') @section('title', 'Booking Detail') @section('content')

Bookings of - {{ucfirst($user->fname)}} {{ucfirst($user->lname)}}

@foreach($bookings as $book)

Notes: @if($book->notes && count($book->notes))
    @foreach($book->notes as $note)
  • {!! $note->notes !!} {{ \Carbon\Carbon::parse($note->created_at)->format('d M Y, h:i A') }} @if($note->createdby == auth()->id())
    @endif
  • @endforeach
@else No notes available. @endif
@endforeach
@endsection @section('footer_scripts') @endsection