@extends('layouts.base') @section('title', 'Select Payment Method - ' . $salesPage->name) @push('styles') @endpush @section('body') @php // Favicon fallback logic: sales page > user company logo > system default $faviconPath = $salesPage->getFaviconPath() ?? $salesPage->user->company_logo ?? asset('favicon.ico'); @endphp
@if($salesPage->logo_path && $salesPage->show_logo)
{{ $salesPage->name }}
@endif

Order Summary

@foreach($salesPageOrder->items as $item)
{{ $item['name'] }}
Qty: {{ $item['quantity'] }} × RM {{ number_format($item['price'], 2) }}
RM {{ number_format($item['quantity'] * $item['price'], 2) }}
@endforeach
Subtotal RM {{ number_format($salesPageOrder->total_amount, 2) }}
Total RM {{ number_format($salesPageOrder->total_amount, 2) }}

Delivery Information

{{ $salesPageOrder->customer_name }}

{{ $salesPageOrder->customer_phone }}

@if($salesPageOrder->customer_email)

{{ $salesPageOrder->customer_email }}

@endif

{{ $salesPageOrder->customer_address }}

{{ $salesPageOrder->customer_postcode }} {{ $salesPageOrder->customer_city }}

{{ $salesPageOrder->customer_state }}, Malaysia

Select Payment Method

Choose how you want to complete your payment

@csrf

Secured payment processing

@endsection