@extends('layouts/layout') @section('content')

Withdrawals

@forelse ($withdrawals as $withdrawal) @empty @endforelse
ID User ID User Name Type Amount Status Created At Action
{{ $withdrawal->id }} {{ $withdrawal->user?->id ?? '-' }} {{ $withdrawal->user?->name ?? 'Deleted' }} {{ $withdrawal->type_text }} {{ $withdrawal->amount }} {{ $withdrawal->status_text }} {{ $withdrawal->created_at->format('d M Y') }} {{-- --}}
There are no withdrawals yet.
{{ $withdrawals->links() }}
@endsection