@extends('adminlte::page') @section('title', 'My Withdrawals') @section('content_header')

My Withdrawals

@stop @section('content')

Withdrawal Requests

@forelse($withdrawals as $withdrawal) @empty @endforelse
ID Amount Status Payment Method Created At Actions
{{ $withdrawal->id }} Rp {{ number_format($withdrawal->amount, 2) }} {{ ucfirst($withdrawal->status) }} {{ $withdrawal->payment_method }} {{ $withdrawal->created_at->format('Y-m-d H:i') }} View
No withdrawal requests found.
{{ $withdrawals->links() }}
@stop