@extends('store.layouts.app') @section('title', 'Checkout') @section('meta_description', 'Checkout – ' . ($store_name ?? config('app.name'))) @section('content')
{{-- Step Indicator --}}
2
Address
3

Checkout

@csrf
{{-- Shipping Address --}}

Shipping Details

@error('shipping_name')

{{ $message }}

@enderror
@error('shipping_email')

{{ $message }}

@enderror
@error('shipping_phone')

{{ $message }}

@enderror
@error('shipping_address')

{{ $message }}

@enderror
{{-- Coupon --}}

Promo Code

@if($discount > 0 && $coupon)

Coupon "{{ $coupon->code }}" applied! You saved {{ $currency_symbol }}{{ number_format($discount, 0) }}

@endif
{{-- Order Summary Sidebar --}}

Order Summary

@foreach($cart->items as $item)
{{ $item->product->name }}

{{ $item->product->name }}

@if($item->variant)

{{ $item->variant->name }}

@endif

Qty: {{ $item->quantity }} × {{ $currency_symbol }}{{ number_format($item->price, 0) }}

{{ $currency_symbol }}{{ number_format($item->subtotal, 0) }}

@endforeach
Subtotal {{ $currency_symbol }}{{ number_format($subtotal, 0) }}
Delivery FREE
@if($discount > 0)
Discount -{{ $currency_symbol }}{{ number_format($discount, 0) }}
@endif
Total {{ $currency_symbol }}{{ number_format($total, 0) }}

Secure checkout

Easy returns

@endsection