@extends('layouts.app') @section('content')
PRODUCT SUMMARY - {{request()->branch}}
  • Date: {{request('date')}}
  • Total Quantity: {{$itemsQuantity}}
  • Total Cash: {{empty($app->currency) ? "GHS" : $app->currency}}@convert($itemsPrice)
@foreach($items as $item) @endforeach
Products Quantity Unit Price Totals
{{$item->quantity}} {{empty($app->currency) ? "GHS" : $app->currency}}@convert($item->price) {{empty($app->currency) ? "GHS" : $app->currency}}@convert($item->total)
@endsection