@if($order->user->min_site == 1)
@else
@endif
|
|
Order Invoice
Invoice ID: #{{$Receipt->id}}
Created: {{Carbon\Carbon::now()->format('l jS F Y')}}
PAID
|
|
@if($order->user->min_site == 1)
Made In Northamptonshire
Arch Villa, 23 High Street, Bozeat, Northants, NN29 7NF
@else
Edible16
34 Harborough Rd, Great Oxendon, Market Harborough LE16 8NA
@endif
|
|
Receipt for EcoVillage
|
|
|
Product |
Price |
Quantity |
Total |
@foreach($Lines as $line)
@php $product = App\Models\ePos\ePosProducts::where("id", $line->product)->get()->first();
@endphp
{{$product->name}} |
£{{number_format($line->price, 2)}} |
{{$line->units}} |
£{{number_format($line->price * $line->units, 2)}} |
@endforeach
|
|
Total: £{{number_format($Payment->total,
2)}}
Payment Type: {{($Payment->payment == "cash") ? 'Cash'
:'Card'}}
|