@extends('layouts.app') @section('title','Recharge Success') @section('content') @php $status = $recharge->status; $isSuccess = in_array($status, ['success','completed','approved']); $statusLabel = $status === 'pending' ? 'অপেক্ষমান' : ($isSuccess ? 'সফল হয়েছে' : 'ব্যর্থ হয়েছে'); $statusColor = $status === 'pending' ? 'text-orange-500' : ($isSuccess ? 'text-green-500' : 'text-red-500'); @endphp
{{-- main white card --}}
{{-- green circle with check --}}
{{-- heading --}}

লেনদেন সফল হয়েছে

Mobile Recharge

{{-- details box --}}
{{-- amount row --}}
পরিমাণঃ ৳{{ number_format($recharge->amount, 2) }}
{{-- status row --}}
অবস্থাঃ {{ $statusLabel }}
{{-- date row --}}
তারিখঃ {{ optional($recharge->created_at)->format('d-m-Y') }}
{{-- bottom green button --}} হোমে ফিরে যান
@endsection