@extends('layouts.app') @section('content')

{{request()->branch}}: REPORT FOR {{request()->date}}

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_general - $total_deliveries)

Total Net Sales

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_house)

No Charge

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($branch_total_reject)

Rejected Items

@foreach($sales_today_branch as $list) @endforeach
Order No. Ordered Date Product Quantity Unit Price Discount Total Price
#{{$list->invoice_number}} {{$list->created_at}} {{$list->invoice_product_name}} {{$list->invoice_quantity}} {{empty($app->currency) ? "GHS" : $app->currency}}{{$list->invoice_unit_price}} None {{empty($app->currency) ? "GHS" : $app->currency}}{{$list->invoice_total_price}}
No Charge
@foreach($branch_total_house_list as $list) @endforeach
Product Quantity Unit Price Total Price
{{$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}}
Rejected Items
@foreach($branch_total_reject_list as $list) @endforeach
Order No. Product Quantity Unit Price Total Price
#{{$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}}
Report on Sales Person Category
@if(request()->branch == "DAKODWOM BRANCH") @else @endif
Sales Type Description Actions
Counter [Walk In Customer] Transactions View report and transaction for counter sales or walk in customers
@csrf
Drive Thru View Report of Drive-Thru Transactions
@csrf
Delivery [ Call Center Orders ] Transactions View report for Call Center or Delivery transaction
@csrf
Invoice List
@foreach($all_orders as $list) @endforeach
Order ID Transaction By Action
#{{$list->order_id}} {{@strtoupper($list->name)}} view
User Report
@foreach($users_all as $list) @endforeach
Name Branch Action
{{@strtoupper($list->name)}} {{$list->branch}}
@csrf
@endsection