@extends('layouts.app')
@section('title','Withdrawals')
@section('content')
| ID | User | Amount | Status | Date | |
@foreach($withdrawals as $w)
| {{ $w->id }} |
{{ $w->user_id }} |
{{ $w->amount }} |
{{ $w->status }} |
{{ $w->created_at }} |
@if($w->status=='pending')
@endif
|
@endforeach
{{ $withdrawals->links() }}
@endsection