{{ucwords($settings->name)}}


{{$date}}


Summary


Gross Sale {{ round($gross_sale) }}
Discount {{ round($discount) }}
Tax {{ round($tax) }}
Delivery Charges {{ round($delivery_charges) }}
Net Sale {{ round($net_sale) }}

Items by category


@php $i_total_items_count = 0; $i_total_menu_items_total = 0; $f_total_items_count = 0; $f_total_menu_items_total = 0; @endphp @if(!empty($category_by_items)) @foreach($category_by_items as $row) @php $i_total_items_count = 0; $i_total_menu_items_total = 0; @endphp @if(!empty($row->items)) @foreach($row->items as $item) @php $i_total_items_count += $item->items_count; $i_total_menu_items_total += $item->item_total_price; @endphp @endforeach @endif @php $f_total_items_count += $i_total_items_count; $f_total_menu_items_total += $i_total_menu_items_total; @endphp @endforeach @endif
{{ $row->category_name }}
{{ $item->item_name }} @if($item->price_title != '')({{ $item->price_title }})@endif {{ $item->items_count }} {{ round($item->item_total_price) }}
{{ round($i_total_items_count) }} {{ round($i_total_menu_items_total) }}
{{ round($f_total_items_count) }} {{ round($f_total_menu_items_total) }}

Order Type


@if(isset($order_type) && !empty($order_type)) @php $ot_total_sale = 0; $ot_total_discount = 0; $ot_total_tax = 0; $ot_total_delivery_charges = 0; $ot_total_netsale = 0; @endphp @foreach($order_type as $row) @php $ot_total_sale += $row->sale; $ot_total_discount += $row->discount; $ot_total_tax += $row->tax; $ot_total_delivery_charges += $row->delivery_charges; $ot_total_netsale += $row->netsale; @endphp @endforeach @endif
Order Type Sale Discount Delivery Charges Net Sale
{{ $row->order_type }} {{ round($row->sale) }} {{ round($row->discount) }} {{ round($row->delivery_charges) }} {{ round($row->netsale) }}
{{ round($ot_total_sale) }} {{ round($ot_total_discount) }} {{ round($ot_total_delivery_charges) }} {{ round($ot_total_netsale) }}

Payment Type


@if(isset($payment_type) && !empty($payment_type)) @php $pm_total_sale = 0; $pm_total_discount = 0; $pm_total_tax = 0; $pm_total_delivery_charges = 0; $pm_total_netsale = 0; @endphp @foreach($payment_type as $row) @php $pm_total_sale += $row->sale; $pm_total_discount += $row->discount; $pm_total_tax += $row->tax; $pm_total_delivery_charges += $row->delivery_charges; $pm_total_netsale += $row->netsale; @endphp @endforeach @endif
Payment Type Sale Discount Delivery Charges Net Sale
{{ $row->payment_type }} {{ round($row->sale) }} {{ round($row->discount) }} {{ round($row->delivery_charges) }} {{ round($row->netsale) }}
{{ round($pm_total_sale) }} {{ round($pm_total_discount) }} {{ round($pm_total_delivery_charges) }} {{ round($pm_total_netsale) }}

By User/Cashier


@if(isset($by_user) && !empty($by_user)) @php $pm_total_sale = 0; $pm_total_discount = 0; $pm_total_tax = 0; $pm_total_delivery_charges = 0; $pm_total_netsale = 0; @endphp @foreach($by_user as $row) @php $pm_total_sale += $row->sale; $pm_total_discount += $row->discount; $pm_total_netsale += $row->netsale; @endphp @endforeach @endif
User/Cashier Sale Discount Net Sale
{{ $row->user }} {{ round($row->sale) }} {{ round($row->discount) }} {{ round($row->netsale) }}
{{ round($pm_total_sale) }} {{ round($pm_total_discount) }} {{ round($pm_total_netsale) }}