@extends('layouts.app')
@section('title','Checkout')
@push('head')
@endpush
@section('content')
Review & Order
Your order will be sent directly to WhatsApp for confirmation.
{{-- ORDER SUMMARY --}}
@php $bgMap=['electronics'=>'linear-gradient(135deg,#eef2ff,#c5cffc)','fashion'=>'linear-gradient(135deg,#fff0f6,#f7c6e0)','home'=>'linear-gradient(135deg,#f0fdf4,#bbf7d0)','food'=>'linear-gradient(135deg,#fffbeb,#fde68a)']; @endphp
@foreach($items as $row)
@php $p=$row['product'] @endphp
{{ $p['emoji'] }}
{{ $p['name'] }}
Qty: {{ $row['qty'] }}
${{ number_format($p['price']*$row['qty'],2) }}
@endforeach
Total
${{ number_format($total,2) }}
{{-- CUSTOMER FORM --}}
{{-- DIVIDER --}}
{{-- MOMO BUTTON --}}
📱
Pay with MTN Mobile Money
@endsection