@if(hasPermissionAndModuleEnabled('view booked time section', 'time_mgt')) @php $bookings = \App\Models\ProjectBooking::where('task_id', $booked_task_id)->whereNull('message_id')->with('booker')->get(); @endphp @if($bookings->isNotEmpty()) @foreach($bookings as $booking)

{!! nl2br($booking->description) !!}

@if(canViewUpdate('view show report button at booked time')) {{ __('Show report') }} @endif @if(canViewUpdate('view edit report button at booked time')) {{ __('Edit report') }} @endif
@endforeach @endif @endif