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

TOTAL REVENUE - {{request()->date}}

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

Total Net Sales

{{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

@foreach($sales_today_general as $list) @endforeach
Order No. Outlet Ordered Date Product Quantity Unit Price
{{empty($app->currency) ? "GHS" : $app->currency}}
Category Total Price
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{$list->branch}} {{$list->created_at}} {{@strtoupper($list->invoice_product_name)}} {{$list->invoice_quantity}} @convert($list->invoice_unit_price) {{@strtoupper($list->invoice_category)}} @convert($list->invoice_total_price)
No Charge
@foreach($general_total_house_list as $list) @endforeach
OrderNo. Product Qty Rate
{{empty($app->currency) ? "GHS" : $app->currency}}
Total
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{@strtoupper($list->invoice_product_name)}} {{$list->invoice_quantity}} @convert($list->invoice_unit_price) @convert($list->invoice_total_price)
Rejected Item
@foreach($general_total_reject_list as $list) @endforeach
OrderNo. Product Qty Rate
{{empty($app->currency) ? "GHS" : $app->currency}}
Total
{{empty($app->currency) ? "GHS" : $app->currency}}
#{{$list->invoice_number}} {{@strtoupper($list->invoice_product_name)}} {{$list->invoice_quantity}} @convert($list->invoice_unit_price) @convert($list->invoice_total_price)
Sales Type
Type Description Actions
Delivery Selling products or services to customers and delivering them to a specified location, typically the customer's home or another designated address.
@csrf
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
@include('modal.revenue') @endsection