{{ $deliveryPartner->companie_name ?? '' }}
|
Product
|
Quantity
|
Unit Price
|
Net
|
VAT
|
Gross
|
{{ $all_order->cart->package->package_name }}
|
1
|
£{{ $all_order->cart->package->package_price }}
|
£{{ $all_order->cart->package->package_price }}
|
£{{ ($all_order->cart->package->package_price * 20) / 100 }}
|
£{{ $all_order->cart->package->package_price + ($all_order->cart->package->package_price * 20) / 100 }}
|
@foreach (@$all_order->cart->addonCartServices as $item)
@php
$net_total = $net_total + @$item->service->price;
$vat = ($item->service->price * 20) / 100;
$total_vat = $total_vat + $vat;
@endphp
{{ $item->service->service_name }} |
1 |
£{{ $item->service->price }} |
£{{ $item->service->price }} |
£{{ $vat }} |
£{{ $item->service->price + $vat }} |
@endforeach
@if ($purchased_company_addresses!=null)
@foreach ($purchased_company_addresses as $item)
{{$item->address_type=='registered_address'?'Registered Address':'Business Address'}} |
1 |
{{$item->price}} |
{{$item->price}} |
{{(($item->price*20)/100)}} |
{{($item->price)+(($item->price*20)/100)}} |
@endforeach
@endif
@if ($purchased_appointment_addresses!=null)
@foreach ($purchased_appointment_addresses as $item)
@if ($item->total_sum!=0)
Service Address |
{{$item->qnt}} |
{{$item->total_sum}} |
{{$item->total_sum}} |
{{(($item->total_sum*20)/100)}} |
{{($item->total_sum)+(($item->total_sum*20)/100)}} |
@endif
@endforeach
@endif
{{--
- Limited by Shares Company Formation |
1 |
|
|
|
|
- Email Copy of Certificate of Incorporation |
1 |
|
|
|
|
- Email Copy of Memorandum & Articles of Association |
1 |
|
|
|
|
- Email Copy of Share Certificate(s) |
1 |
|
|
|
|
- Free .com or .co.uk domain name |
1 |
|
|
|
|
PSC Help Required |
1 |
0.00 |
0.00 |
0.00 |
0.00 |
Barclays Bank UK PLC |
1 |
0.00 |
0.00 |
0.00 |
0.00 |
Wise UK Business Account |
1 |
0.00 |
0.00 |
0.00 |
0.00 |
Ultimate Guide to Starting Your Business |
1 |
0.00 |
0.00 |
0.00 |
0.00 |
Companies House Incorporation Fee |
10.00 |
0.00 |
0.00 |
0.00 |
0.00 |
--}}
|
|
Totals:
|
£{{ $net_total + $all_order->cart->package->package_price + $total_purchased_address_amount }}
|
£{{ $total_vat + ((@$all_order->cart->package->package_price+ @$total_purchased_address_amount) * 20) / 100 }}
|
@php
$total_price = $net_total + $all_order->cart->package->package_price + $total_purchased_address_amount+($total_vat + (($all_order->cart->package->package_price+$total_purchased_address_amount) * 20) / 100);
@endphp
£{{ $total_price }}
|
|
|
Amount Paid:
|
|
|
£{{$transaction->amount }}
|
@php
$total_due = $total_price - $transaction->amount;
$total_due = round($total_due, 2);
@endphp
@if ($total_due>0.01)
|
|
Amount Due:
|
|
|
£{{$total_due }}
|
@endif