@if(isset($daily_orders) && $daily_orders == 'yes')
{{ $tList['date'] }} |
@else
{{ $tList['business_name'] }} |
@endif
{{ $tList['total_gross_sales'] }} |
{{ $tList['total_discount'] }} |
{{ $tList['total_net_sales'] }} |
@if(Helper::widgetAccess('show_column_tax_amount'))
{{ $tList['total_tax_amount'] }} |
{{ $tList['tax_amount_cash'] }} |
{{ $tList['tax_amount_card'] }} |
@endif
{{ $tList['total_surcharge'] }} |
{{ $tList['total_tip_amount'] }} |
@if($Paymethods)
@foreach($Paymethods as $Paymethod)
{{ $tList['total_'.$Paymethod->payment_key] }} |
@endforeach
@endif
{{ $tList['total_cash_amount'] }} |
{{ $tList['total_card_amount'] }} |
{{ $other_amount }} |
{{ $tList['total_payments'] }} |
{{ $tList['total_items_sold'] }} |
@if(Helper::widgetAccess('hide_drop1_drop2'))
@else
{{ $tList['drop_one'] }} |
{{ $tList['drop_two'] }} |
@endif
{{ $tList['total_transactions'] }} |
@php
@endphp
@endif
@endforeach
{{ __('lbl.total') }} |
{{ $total_gross_sales }} |
{{ $total_discount }} |
{{ $total_net_sales }} |
@if(Helper::widgetAccess('show_column_tax_amount'))
{{ $total_tax_amount }} |
{{ $total_tax_amount_cash }} |
{{ $total_tax_amount_card }} |
@endif
{{ $total_surcharge }} |
{{ $total_tip_amount }} |
@php
if($Paymethods){
foreach($Paymethods as $Paymethod){
$pay_method = 'total_'.$Paymethod->payment_key;
echo ''.array_sum(array_column($establishmentData,$pay_method)).' | ';
}
}
@endphp
{{ $total_cash_amount }} |
{{ $total_card_amount }} |
{{ $total_other_amount }} |
{{ round($total_payments,2) }} |
{{$total_items_sold}} |
@if(Helper::widgetAccess('hide_drop1_drop2'))
@else
{{ $drop_one }} |
{{ $drop_two }} |
@endif
{{ $total_transactions }} |
@else