@extends('layouts.app') @section('title','Withdrawals') @section('content')

Withdrawals

@foreach($withdrawals as $w) @endforeach
IDUserAmountStatusDate
{{ $w->id }} {{ $w->user_id }} {{ $w->amount }} {{ $w->status }} {{ $w->created_at }} @if($w->status=='pending')
@csrf
@csrf
@endif
{{ $withdrawals->links() }}
@endsection