@extends('layouts.admin') @section('content') @push('page-title') Admin Dashboard @endpush

Welcome {{ auth()->user()->first_name }} {{ auth()->user()->last_name }}

Todays Bookings
@foreach($todaysBookings as $todayBooking) @endforeach
Name Time Location Table No of guests
{{ $todayBooking->first_name }} {{ $todayBooking->last_name }} {{ $todayBooking->reservation_time }} {{ $todayBooking->table_location }} {{ $todayBooking->table_id }} {{ $todayBooking->guest_number }}
This Weeks Bookings
@foreach($thisWeekBookings as $weekBookings) @endforeach
Name Date Time Location Table No of guests
{{ $weekBookings->first_name }} {{ $weekBookings->last_name }} {{ date('d/m/Y', strtotime($weekBookings->reservation_date)) }} {{ $weekBookings->reservation_time }} {{ $weekBookings->table_location }} {{ $weekBookings->table_id }} {{ $weekBookings->guest_number }}
@endsection