@extends('layouts.admin') @section('content')

{{$page_title}}

@php $i = 0;@endphp @foreach($withdraw as $p) @php $i++;@endphp @endforeach
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
@endsection @section('scripts') @endsection