{{-- resources/views/checkout/show.blade.php --}} @extends('layouts.app') @section('title','Checkout') @section('content')

Checkout

Subtotal £{{ number_format($totals['subtotal'],2) }}
VAT £{{ number_format($totals['vat'],2) }}
Total £{{ number_format($totals['total'],2) }}
{{-- Payment Element --}}
@push('scripts') @endpush @endsection