@extends('layouts.app')
@section('content')
Department Summary
- Total Quantity: {{$itemsQuantity}}
- Total Cash: {{empty($app->currency) ? "GHS" : $app->currency}}@convert($itemsPrice)
Products |
Quantity |
Totals |
Action |
@foreach($items as $item)
|
{{$item->quantity}}
|
{{empty($app->currency) ? "GHS" : $app->currency}}@convert($item->total)
|
view
|
@endforeach
@endsection