@extends('admin.layouts.app') @section('title', $title) @section('head') @endsection @section('content')

{{$title}}

{{$title}}

@foreach ($dataArr as $booking) @php $dates = []; foreach($booking->date as $k => $v) { $dates[$k] = date("d-m-Y", strtotime($v)); } @endphp @endforeach
Id Name Date Created By Status Notes Action
{{$booking->id}} {{$booking->user->name ?? $booking->user->firstname.' '.$booking->user->lastname }}{{implode(", ", $dates)}} {{$booking->createdBy->name ?? $booking->createdBy->firstname.' '.$booking->createdBy->lastname }} @if ($booking->status == 0) Requested @elseif ($booking->status == 1) Accepted @else Declined @endif {{$booking->notes}} Invoice List
@endsection @section('script') @endsection