@extends('backend.layouts.app') @section('content')

{{ count(App\Models\Booking::where('branch', 'Alegria Manila') ->where('assigned_time', '11AM - 1PM')->get()) }}

Lunch Seating Count

More info

{{ count(App\Models\Booking::where('branch', 'Alegria Manila') ->where('assigned_time', '4PM - 6PM')->get()) }}

1st Seating Count

More info

{{ count(App\Models\Booking::where('branch', 'Alegria Manila') ->where('assigned_time', '8PM - 10PM')->get()) }}

2nd Seating Count

More info
{{--

{{ count(App\Models\FinalOrder::where('order_status', 'For Confirmation')->get()) }}

For Confirmation

More info

{{ count(App\Models\FinalOrder::where('order_status', 'Failed Orders')->get()) }}

Failed Orders

More info
--}}
@endsection