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