@extends('layouts.main-layout') @section('content-header')
| নাম | মোবাইল নাম্বার | পরিমাণ | স্ট্যাটাস | তারিখ | অ্যাকশন |
|---|---|---|---|---|---|
| {{ $r->user->name ?? 'User' }} | {{ e($r->mobile_number) }} | {{ $r->amount }}৳ | @if($r->status == 'pending') Pending @elseif($r->status == 'approved') Approved @elseif($r->status == 'rejected') Rejected @else {{ ucfirst($r->status) }} @endif | {{ $r->created_at->format('d-m-Y h:i A') }} | @if($r->status === 'pending') @else {{ ucfirst($r->status) }} @endif |