@extends('layouts.front_main') @section('title', $page_name) @if(isset($page) && $page) @include('front.partials._meta_properties_page') @endif @section('content')
@include('front.partials._breadcrumb')
1. - Your Basket
2. - Checkout
3. - Payment
4. - Order Complete
@if($discount_code) @endif
Product Description Quantity Price Total
{{$packet->title}} 1 £{{number_format($packet->price, 2, ',', ' ')}} £{{number_format($packet->price, 2, ',', ' ')}}
Subtotal £{{number_format($packet->price, 2, ',', ' ')}}
VAT @ 20% £0.00
Discount {{$discount_code->discount}}%
Total @if($discount_code) {{number_format($packet->price - ($packet->price*$discount_code->discount / 100), 2, ',', ' ');}} @else£{{$packet->price}}@endif
@csrf
@php $errors = Session::get('error'); @endphp @if($errors)
{{$errors}}
@endif
@endsection @push('scripts') @endpush