SALES REPORT FOR - {{request()->branch}} | Category Type: {{request()->category}}, Date: {{request()->date}}
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_general - $deliveriesToday)
Net Sales
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_house)
On the House
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_reject)
Rejected Items
Summary
@include('inc.report-summary-salesperson')
Discounts
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($discounts)
view
@if(request()->category == "Delivery")
Total Delivery Fees
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($deliveriesToday)
@endif
Expected Amount
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($orders)
Order No. |
Ordered Date |
Product |
Quantity |
Unit Price |
Category |
Total Price |
@foreach($sales_today_branch as $list)
#{{$list->invoice_number}} |
{{$list->created_at}} |
{{$list->invoice_product_name}}
|
{{$list->invoice_quantity}}
|
{{empty($app->currency) ? "GHS" : $app->currency}}{{$list->invoice_unit_price}} |
{{$list->invoice_category}} |
{{empty($app->currency) ? "GHS" : $app->currency}}{{$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}}{{$list->invoice_unit_price}} |
{{empty($app->currency) ? "GHS" : $app->currency}}{{$list->invoice_total_price}} |
@endforeach