@extends('layouts.app')
@section('title', 'Pay with Mobile Money')
@push('head')
@endpush
@section('content')
Mobile Money Payment
๐ฑ
MTN Mobile Money ยท MoMo
{{-- 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'],2) }}
${{ number_format($p['price'] * $row['qty'],2) }}
@endforeach
Total
${{ number_format($total,2) }} {{ $currency }}
{{-- MOMO HINT --}}
๐ฒ How it works:
Enter your details and MoMo phone number below. You will receive a
push notification on your phone asking you to approve
the payment. The page will automatically update once the payment is confirmed.
{{-- PAYMENT FORM --}}
or
Checkout via WhatsApp instead
@endsection