@extends('layouts.app') @section('title','Card D. Success') @section('content') @php $isSuccess = in_array($submit->status, ['approved','success','completed']); $isFailed = in_array($submit->status, ['rejected','failed','canceled']); if ($isSuccess) { $statusLabel = 'অনুমোদিত'; $statusColor = 'text-green-500'; } elseif ($isFailed) { $statusLabel = 'বাতিল / ব্যর্থ'; $statusColor = 'text-rose-500'; } else { $statusLabel = 'অপেক্ষমান'; $statusColor = 'text-orange-500'; } $brand = $card?->brand ?? 'Card'; $created = optional($submit->created_at)->format('d-m-Y'); @endphp
{{-- main white card --}}
{{-- green circle with check --}}
{{-- heading --}}

কার্ড অ্যাড মানি রিকোয়েস্ট সাবমিট হয়েছে

Add Money ({{ $brand }})

{{-- details box --}}
{{-- amount --}}
পরিমাণঃ ৳{{ number_format($submit->amount, 2) }}
{{-- card brand --}}
কার্ড ব্র্যান্ডঃ {{ $brand }}
{{-- last 4 --}}
শেষ ৪ ডিজিটঃ {{ $lastDigits ? '****'.$lastDigits : 'N/A' }}
{{-- reference --}}
রেফারেন্সঃ {{ $submit->reference_code }}
{{-- status --}}
অবস্থাঃ {{ $statusLabel }}
{{-- date --}}
তারিখঃ {{ $created }}
{{-- bottom full-width green button --}} আবার কার্ড সিলেক্ট করুন
@endsection