@extends('layouts.app') @section('title','লেনদেন সফল হয়েছে') @push('styles') @endpush @section('content') @php $amount = (float) $transfer->amount; $date = optional($transfer->created_at)->format('d-m-Y'); $status = $transfer->status; $statusText = 'অপেক্ষমান'; $statusClass = 'text-amber-500'; if ($status === 'succeeded' || $status === 'approved') { $statusText = 'সফল হয়েছে'; $statusClass = 'text-emerald-500'; } elseif ($status === 'failed' || $status === 'rejected') { $statusText = 'ব্যর্থ হয়েছে'; $statusClass = 'text-rose-500'; } @endphp
{{-- main card --}}
{{-- green icon --}}

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

Send Money
{{-- details box --}}
পরিমাণঃ ৳{{ number_format($amount, 2) }}
অবস্থাঃ {{ $statusText }}
তারিখঃ {{ $date }}
{{-- bottom button --}}
@endsection