RECEIPT

Receipt No {{$Receipt->id}}

Date: {{$Receipt->datenew}}

@foreach($Lines as $line) @php $product = App\Models\ePos\ePosProducts::where("id", $line->product)->get()->first(); @endphp @endforeach @if($Payment->payment == "cash") @else @endif
Product Price QTY Total
{{$product->name}} £{{number_format($line->price, 2)}} {{$line->units}} £{{number_format($line->price * $line->units, 2)}}
Total

£{{number_format($Payment->total, 2)}}

Payment Type

{{($Payment->payment == "cash") ? 'Cash' :'Card'}}

Change

£{{number_format($Payment->units - $Payment->tendered, 2)}}

Transaction ID

{{$Payment->transid}}