@extends('admin.layout.masterV3', ['version' => 3, 'isV2' => false]) @section('title','RESERVATIONS') @section('content')
| Date | Time(From) | Time(To) | Floor | Table | Person | Contact Person | Phone | Note | ||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->date }} | {{ date('g:i a', strtotime($item->from_time)) }} | {{ date('g:i a', strtotime($item->to_time)) }} | {{ $item->floor ? $item->floor->name : '' }} | @if ($item->table_id) @foreach ($tableid as $key => $v_table) @php $arr[$key] = $table[$v_table]; @endphp @endforeach {{ implode(',', $arr) }} @endif | {{ $item->person }} | {{ $item->contact_person }} | {{ $item->phone }} | {{ $item->email }} | {{ $item->note }} |