@extends('layouts.frontend') @section('title', 'Checkout') @section('content')

Checkout

@csrf
Shipping Address
@error('shipping_address')
{{ $message }}
@enderror
Billing Address
@error('billing_address')
{{ $message }}
@enderror
Order Notes
Order Summary
@foreach($items as $item)
{{ $item['product']->name }} x{{ $item['quantity'] }} ${{ number_format($item['subtotal'], 2) }}
@endforeach
Total: ${{ number_format($total, 2) }}
@endsection