@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 - $discount)
@foreach($items as $item) @endforeach
Products Quantity Totals
{{empty($app->currency) ? "GHS" : $app->currency}}
{{$item->quantity}} @convert($item->total)
@endsection