@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)
@foreach($items as $item) @endforeach
Products Quantity Total
{{empty($app->currency) ? "GHS" : $app->currency}}
Action
{{$item->quantity}} @convert($item->total)
@if(request()->branch == null)@else @endif
@endsection