@extends('layouts.app') @section('title', 'Order ' . $order->order_number) @section('content')
Your shipment has arrived in Nigeria. Please pay shipping fee of ₦{{ number_format($order->shipping_cost, 2) }} to proceed.
{{ $order->created_at->format('M d, Y H:i') }}
{{ $item->product->name }}
{{ $item->quantity }} x ₦{{ number_format($item->unit_price, 2) }}
₦{{ number_format($item->total, 2) }}
incl. ₦{{ number_format($item->shipping_cost, 2) }} shipping
Bank Transfer
Bank: {{ $settings['bank_name'] ?? 'Not configured' }}
Account: {{ $settings['account_number'] ?? 'Not configured' }}
Name: {{ $settings['account_name'] ?? 'Not configured' }}
₦{{ number_format($payment->amount, 2) }}
{{ $payment->created_at->format('M d, Y') }}