SALES REPORT FROM {{request()->date}}, | Category Type: {{request()->category}}
@if(request()->category == "Delivery")
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_general - $deliveriesToday)
Net Sales
@else
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_general)
Net Sales
@endif
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_house)
No Charge
{{empty($app->currency) ? "GHS" : $app->currency}}{{$branch_total_reject}}
Rejected Items
Order No. |
Ordered Date |
Product |
Quantity |
Category |
Unit Price |
Total Price |
@foreach($sales_today_branch as $list)
#{{$list->invoice_number}} |
{{$list->created_at}} |
{{$list->invoice_product_name}}
|
{{$list->invoice_quantity}}
|
{{@strtoupper($list->invoice_category)}} |
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($list->invoice_unit_price) |
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($list->invoice_total_price) |
@endforeach
Product |
Quantity |
Unit Price |
Total Price |
@foreach($branch_total_house_list as $list)
{{$list->invoice_product_name}}
|
{{$list->invoice_quantity}}
|
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($list->invoice_unit_price) |
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($list->invoice_total_price) |
@endforeach
Order No. |
Product |
Quantity |
Unit Price |
Total Price |
@foreach($branch_total_reject_list as $list)
{{$list->invoice_number}} |
{{$list->invoice_product_name}}
|
{{$list->invoice_quantity}}
|
{{empty($app->currency) ? "GHS" : $app->currency}}{{$list->invoice_unit_price}} |
{{empty($app->currency) ? "GHS" : $app->currency}}{{$list->invoice_total_price}} |
@endforeach