@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
Add Money ({{ $methodName }})
{{-- details box --}}