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

SALES REPORT FOR - {{request()->branch}}, Name: {{$user_data -> name}} | Category Type: {{$user_data -> sales_person_category}}, Date: {{request()->date}}

GH₵{{$branch_total_general}}

Total Sales

GH₵{{$branch_total_house}}

On the House

GH₵{{$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}} GH₵{{$list->invoice_unit_price}} None GH₵{{$list->invoice_total_price}}
On the House
@foreach($branch_total_house_list as $list) @endforeach
Product Quantity Unit Price Total Price
{{$list->invoice_product_name}} {{$list->invoice_quantity}} GH₵{{$list->invoice_unit_price}} GH₵{{$list->invoice_total_price}}
Rejected Order
@foreach($branch_total_reject_list as $list) @endforeach
Order No. Product Quantity Unit Price Total Price
#55589 {{$list->invoice_product_name}} {{$list->invoice_quantity}} GH₵{{$list->invoice_unit_price}} GH₵{{$list->invoice_total_price}}
SALES PERSON CATEGORY
Sale Person Category Counter Sales Person Actions
Delivery View Sales
Counter View Sales
Orders
@foreach($order as $list) @endforeach
Order No. Action
#{{$list->order_id}} view Transaction
@endsection