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