@extends('backend.layouts.app')
@section('content')
{{ count(App\Models\Booking::where('branch', 'Alegria Manila')
->where('assigned_time', '11AM - 1PM')->get()) }}
Lunch Seating Count
{{ count(App\Models\Booking::where('branch', 'Alegria Manila')
->where('assigned_time', '4PM - 6PM')->get()) }}
1st Seating Count
{{ count(App\Models\Booking::where('branch', 'Alegria Manila')
->where('assigned_time', '8PM - 10PM')->get()) }}
2nd Seating Count
{{--
{{ count(App\Models\FinalOrder::where('order_status', 'For Confirmation')->get()) }}
For Confirmation
{{ count(App\Models\FinalOrder::where('order_status', 'Failed Orders')->get()) }}
Failed Orders
--}}
@endsection