- @foreach($errors->all() as $e)
- {{ $e }} @endforeach
{{ strtoupper($viewingBranch->name) }}
Assign cashiers to this branch and view each cashier's sales at this branch: Day = that cashier's sales today, Month = that cashier's sales this month, Year = that cashier's sales this year.
@php $cashiersWithSales = $cashiersWithSales ?? collect(); @endphp
@if($cashiersWithSales->isEmpty())
No cashiers assigned to this branch yet.@if($canAccessSalesBranch ?? false) Use "Assign" above to add cashiers.@endif
@else @endifRecord sale
Sales Branch
Manage location branches. Day, Month, and Year columns show sales totals for today, this month, and this year (realtime).
@php $branches = $branches ?? collect(); @endphp
@if($branches->isEmpty())
No branches yet. Click "Add" to add your first location branch.
@else @endif