@extends('layouts.app') @section('title', 'Checkout - Prokiti Shop') @push('styles') @endpush @section('content')

Checkout

@csrf
Shipping Address
Payment Method

Order Summary

@foreach($items as $item)
{{ $item['quantity'] }} × {{ Str::limit($item['product']->name, 30) }}
৳{{ number_format($item['subtotal'], 0) }}
@endforeach

Subtotal: ৳{{ number_format($total, 0) }}
Shipping: Free

Total Amount:

৳{{ number_format($total, 0) }}

You will earn:
{{ $totalPV }} PV
Congratulations!
You will earn {{ $totalPV }} PV points instantly after order confirmation.

Secure Checkout • Instant PV Credit

@endsection @push('scripts') @endpush