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

REPORT FROM {{Request()->date}}

Name - {{@strtoupper($user_data ->name)}}
Current Outlet - {{@strtoupper($user_data ->branch)}}
Date - {{request('date')}}
User Profile
@if($user_data -> sales_person_category == "Delivery")

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

Net Sales

@else

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

Net Sales

@endif

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

No Charge Items

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

Rejected Items

Transactions
@foreach($sales_today_general as $list) @endforeach
Transaction # CreatedAt Item Quantity Unit Price
{{empty($app->currency) ? "GHS" : $app->currency}}
Pay Method Category Total Price
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{$list->created_at}} {{$list->invoice_product_name}} {{$list->invoice_quantity}} @convert($list->invoice_unit_price) {{$list->agency}} {{$list->invoice_category}} @convert($list->invoice_total_price)
No Charge Items
@foreach($general_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}} {{$list->invoice_product_name}} {{$list->invoice_quantity}} @convert($list->invoice_unit_price) @convert($list->invoice_total_price)
Rejected Items
@foreach($general_total_reject_list as $list) @endforeach
Order No. 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}} @convert($list->invoice_unit_price) @convert($list->invoice_total_price)
Orders
@foreach($order as $list) @endforeach
Transaction # CreatedAt Pay Method Outlet Total Cost
{{empty($app->currency) ? "GHS" : $app->currency}}
Action
#{{$list->order_id}} {{$list->created_at}} {{$list->payment_method}} {{$list->branch}} @convert($list->total_cost_order)
@endsection