@extends('layouts.app')
@section('content')
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