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

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

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

Total Net Sales

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($discounts->sum('amount_deducted')) Discounts

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

No Charge Items

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

Rejected Items

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($held = $held_transactioning->sum('invoice_total_price') - $discounts_held)

Held Transactions

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($discounts_held) Held transactions Discount

{{empty($app->currency) ? "GHS" : $app->currency}}@convert($total_Value = ($held_payments->sum('decrease')))

Payment Recieved from Held Transactions

{{empty($app->currency) ? "GHS" : $app->currency}}@convert( $netSales + $total_Value) Total Payment Recieved.

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

Remaining Balances

Held Transactions
@foreach($sales_today_branch as $list) @endforeach
Transaction # EnteredBy CreatedAt Item Quantity Pay Method Category Unit Price
{{empty($app->currency) ? "GHS" : $app->currency}}
Total Price
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{$list->user->name}} {{$list->created_at}} {{$list->invoice_product_name}} {{$list->invoice_quantity}} {{$list->agency}} {{$list->invoice_category}} @convert($list->invoice_unit_price) @convert($list->invoice_total_price)
No Charge Items
@foreach($branch_total_house_list as $list) @endforeach
Transaction # Item Quantity Unit Price
{{empty($app->currency) ? "GHS" : $app->currency}}
Total Price
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{@strtoupper($list->invoice_product_name)}} @convert($list->invoice_quantity) {{$list->invoice_unit_price}} {{$list->invoice_total_price}}
Rejected Items
@foreach($branch_total_reject_list as $list) @endforeach
Transaction ID Item Quantity Unit Price
{{empty($app->currency) ? "GHS" : $app->currency}}
Total Price
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{$list->invoice_product_name}} {{$list->invoice_quantity}} {{$list->invoice_unit_price}} {{$list->invoice_total_price}}
@if(request()->branch == "DAKODWOM BRANCH") @else @endif
Sales Type Description Actions
Walk in Sales Customers physically entering a store or business establishment to make a purchase, as opposed to buying products or services online or through other remote methods.
@csrf
Drive Thru Show report of Drive-Thru transactions
@csrf
Delivery Sales Selling products or services to customers and delivering them to a specified location, typically the customer's home or another designated address.
@csrf
Invoice List
@foreach($all_orders as $list) @endforeach
Order ID Customer Order Status CreatedAt Created By Total
{{empty($app->currency) ? "GHS" : $app->currency}}
Action
#{{$list->order_id}} {{empty($list->customer->customer_name) ? "WALK-IN SALES" : $list->customer->customer_name}} {!!$list->status == 5 ? '' . " On Hold" . '' : '' . " Paid" . '' !!} {{$list->created_at}} {{@strtoupper($list->name)}} @convert($list->total_cost_order)
Cashier Report
@foreach($users_all as $list) @endforeach
Name Joined Date Outlet Action
{{@strtoupper($list->name)}} {{$list->created_at}} {{$list->branch}}
@csrf
@endsection