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

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

Add Money ({{ $methodName }})

{{-- details box --}}
{{-- amount --}}
পরিমাণঃ ৳{{ number_format($deposit->amount, 2) }}
{{-- method --}}
মেথডঃ {{ $methodName }}
{{-- payer phone --}}
পেয়ার নম্বরঃ {{ $deposit->payer_phone }}
{{-- reference --}}
রেফারেন্সঃ {{ $deposit->reference }}
{{-- status --}}
অবস্থাঃ {{ $statusLabel }}
{{-- date --}}
তারিখঃ {{ $created }}
{{-- bottom full-width green button --}} হোমে ফিরে যান
@endsection