@extends('backEnd.layouts.master') @section('title', 'Withdraw Requests') @section('content')
| Date | Employee | Amount | Status | Employee Note | Admin / Payment | Action |
|---|---|---|---|---|---|---|
| {{ $row->created_at->format('d M Y, g:i A') }} |
{{ $row->user?->name }}
{{ $row->user?->email }}
|
৳{{ number_format($row->amount, 0) }} | {{ $row->statusLabel() }} | {{ $row->employee_note ?: '—' }} |
@if($row->payment_method || $row->payment_ref)
{{ $row->payment_method }} — {{ $row->payment_ref }}
@elseif($row->admin_note)
{{ $row->admin_note }}
@else
—
@endif
@if($row->processor)
by {{ $row->processor->name }}
@endif
|
@if($row->status === 'pending') @elseif($row->status === 'approved') @else — @endif |
| No withdraw requests. | ||||||