@extends('layouts.master') @section('title', 'Quote Summary') @section('style') @endsection @section('content')
@if(!empty($selectedQuote))
@csrf

{{ $selectedQuote['display_name'] ?? $selectedQuote['courier'] }}

{{$selectedQuote['service_name']}}

When do you want to ship ?

{{-- GET A QUOTE --}}

Shipping Summary - £{{$selectedQuote['total_with_margin']}}

Chargeable Weights
{{$totalWeight}}kg
Shipping Charges
£{{ $selectedQuote['total_with_margin'] - ($selectedQuote['price']['total'] * (auth()->user()->isVat ? (float)(auth()->user()->vatPercentage / 100) : 0)) }}
VAT
£{{ $vat = ($selectedQuote['price']['total'] * (auth()->user()->isVat ? (float)(auth()->user()->vatPercentage / 100) : 0)) }}

Total
£{{$selectedQuote['total_with_margin']}} inc VAT
{{--
Delivery Charges Per KG
£{{ number_format(($selectedQuote['price']['total']) / $totalWeight, 2) }}/KG
--}}
@endif
@endsection @section('script') @endsection