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

SALES REPORT FROM {{request()->date}}, | Category Type: {{request()->category}}

@if(request()->category == "Delivery")

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

Net Sales

@else

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

Net Sales

@endif

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

No Charge

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

Rejected Items

@foreach($sales_today_branch as $list) @endforeach
Order No. Ordered Date Product Quantity Category Unit Price Total Price
#{{$list->invoice_number}} {{$list->created_at}} {{$list->invoice_product_name}} {{$list->invoice_quantity}} {{@strtoupper($list->invoice_category)}} {{empty($app->currency) ? "GHS" : $app->currency}}@convert($list->invoice_unit_price) {{empty($app->currency) ? "GHS" : $app->currency}}@convert($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}}@convert($list->invoice_unit_price) {{empty($app->currency) ? "GHS" : $app->currency}}@convert($list->invoice_total_price)
Rejected Order
@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}}
Invoice List
@foreach($order as $list) @endforeach
Invoice Number. Action
#{{$list->order_id}} view
@endsection