@extends('layouts.backend-layout') @section('content')
Table Booking Details

Customer Info {{$table_bookings->name}}
{{$table_bookings->email}}
{{$table_bookings->phone}}
Category {{ $table_bookings->category }}
Date {{ $table_bookings->date }}
Person {{ $table_bookings->person }}
Menus @if($table_bookings->menu) @foreach($table_bookings->menu as $table_bookings2)
    [{{ $table_bookings2->menu_code }}] {{$table_bookings2->name}},
@endforeach @endif
Description {{ $table_bookings->description }}
Status @if($table_bookings->status =="Pending")
Pending
@elseif($table_bookings->status =="Approved")
Approved
@elseif($table_bookings->status =="Cancelled")
Cancelled
@endif
Actions
@endsection