Print
@php $branch = auth()->user()->branch; @endphp
End Day Report
{{$branch->name}}
Date: {{Common::DateTimeFormat($report->created_at)}}
User: {{$report->creator->name??''}}
------------------------------------------------------
Total sales for the day: {{($report->sales??'0.00').' '.@$branch->currency_symbol}}
Total sales in Cash: {{($report->cash??'0.00').' '.@$branch->currency_symbol}}
Total sales in Card: {{($report->card??'0.00').' '.@$branch->currency_symbol}}
------------------------------------------------------
Total Sales by Service
@foreach($report->items as $item) {{$item->menu_name}}: {{($item->amount??'0.00').' '.@$branch->currency_symbol}}
@endforeach ------------------------------------------------------
Total Voids/Cancelled: {{($report->cancelled??'0.00').' '.@$branch->currency_symbol}}
Total Item Voids: {{($report->voids??'0.00').' '.@$branch->currency_symbol}}
{{-- @if($report->updated_by) @endif @foreach($report->items as $item) @endforeach
Day End Report
{{Common::DateFormat($report->date)}}
Generated By {{$report->creator->name??''}}
{{Common::DateTimeFormat($report->created_at)}}
Updated By {{$report->updator->name??''}}
{{Common::DateTimeFormat($report->updated_at)}}
Detail Amount
Total Sales {{$report->sales}}
Total Cash {{$report->cash}}
Total Card {{$report->card}}
Sale by Service
{{$item->menu_name}} {{$item->amount}}
--}}