@extends('layouts.app')
@section('content')
Product Summary for {{$branch}} | {{$category}}
- Total Quantity: {{$itemsQuantity}}
- Total Cash: GH¢@convert($itemsPrice)
Products |
Quantity |
Unit Price |
Totals |
@foreach($items as $item)
|
{{$item->quantity}}
|
GH₵@convert($item->price) |
GH₵@convert($item->total)
|
@endforeach
@endsection