@extends('layouts.app')
@section('content')
REPORT BY CATEGORY - {{@strtoupper(request('branch'))}}
- Date: {{request('date')}}
- Total Quantity: {{$itemsQuantity}}
- Total Cash: {{empty($app->currency) ? "GHS" : $app->currency}}@convert($itemsPrice)
Products |
Quantity |
Total |
Action |
@foreach($items as $item)
|
{{$item->quantity}}
|
GH₵@convert($item->total)
|
|
@endforeach
@endsection