{{ $restaurant->name }}

{{ __('whatsapp::app.dailyOperationsSummary') }}

{{ $formatted_date }}

{{ __('whatsapp::app.totalOrders') }}
{{ number_format($total_orders) }}
{{ __('whatsapp::app.totalRevenue') }}
{{ $formatted_revenue }}
{{ __('whatsapp::app.netRevenue') }}
{{ $formatted_net_revenue }}
{{ __('whatsapp::app.reservations') }}
{{ number_format($total_reservations) }}
{{ __('whatsapp::app.staffOnDuty') }}
{{ number_format($staff_count) }}
{{ __('whatsapp::app.totalTax') }}
{{ $formatted_tax }}
@if($orders_by_status->count() > 0)
{{ __('whatsapp::app.ordersByStatus') }}
@foreach($orders_by_status as $status => $count) @endforeach
{{ __('whatsapp::app.status') }} {{ __('whatsapp::app.count') }}
{{ ucfirst(str_replace('_', ' ', $status)) }} {{ number_format($count) }}
@endif @if($orders_by_branch->count() > 0)
{{ __('whatsapp::app.ordersByBranch') }}
@foreach($orders_by_branch as $branchData) @endforeach
{{ __('whatsapp::app.branchName') }} {{ __('whatsapp::app.totalOrders') }} {{ __('whatsapp::app.revenue') }}
{{ $branchData['branch_name'] }} {{ number_format($branchData['count']) }} {{ currency_format($branchData['revenue'], $currency_id ?? null, true, false) }}
@endif