@extends('layouts.admin') @section('content')
| Sl No | Date | Withdraw Number | Amount | Method | Send Details | Message | Success Date | Status |
|---|---|---|---|---|---|---|---|---|
| {{ $i }} | {{ \Carbon\Carbon::parse($p->created_at)->format('d F Y h:i:s A') }} | {{ $p->withdraw_number }} | {{ $p->amount }} - {{ $basic->currency }} | {{ $p->withdrawMethod->title }} | {{ $p->details }} | @if($p->message == null) Null @else {{ $p->message }} @endif | @if($p->made_date == null) Not Seen Yet. @else {{ \Carbon\Carbon::parse($p->made_date)->format('d F Y h:i:s A') }} @endif | @if($p->status == 0) Pending @elseif($p->status == 1) Completed @else Refunded @endif |