@extends('layouts.app')
@section('content')
Product Category - {{empty(request('branch')) ? "All Outlets" : request('branch')}}
- Date: {{request('date')}}
- Total Quantity: {{$itemsQuantity}}
- Total Cash: {{empty($app->currency) ? "GHS" : $app->currency}}@convert($itemsPrice - $discount)
Products |
Quantity |
Total {{empty($app->currency) ? "GHS" : $app->currency}}
|
Action |
@foreach($items as $item)
|
{{$item->quantity}}
|
@convert($item->total)
|
|
@endforeach
@endsection