@extends('layouts.app') @section('content') @php if (!function_exists('statusColor')) { function statusColor($status) { return match($status) { 'approved' => 'text-green-500', 'payment_verification' => 'text-yellow-500', 'pending' => 'text-blue-500', 'cancelled' => 'text-red-500', default => 'text-gray-500', }; } } $profile = \App\Models\Profile::first(); $namaBank = $profile?->nama_bank ?? 'Nama Bank'; $nomorRekening = $profile?->nomor_rekening ?? 'Nomor Rekening'; $namaPerusahaan = $profile?->nama_perusahaan ?? 'Nama Perusahaan'; @endphp
Silakan selesaikan pembayaran Anda sebelum waktu habis!
{{-- Countdown --}}Status: {{ ucfirst(str_replace('_', ' ', $transaction->status)) }}
Total Bayar:
Rp {{ number_format($transaction->total, 0, ',', '.') }}
Transfer ke:
{{ $nomorRekening }} - {{ $namaBank }}
{{ $transaction->notes }}