@extends('layouts.investor') @section('page-css') @endsection @section('content')

Withdrawal Requests

Withdrawal Requests

@if(count($withdrawals)) @foreach($withdrawals as $withdrawal)
WR

{{ strtoupper($withdrawal->reference) }}

 REF

Withdrawal Request placed on {{ $withdrawal->created_at->format('l jS \\of F Y') }}

Amount

₦ {{ number_format($withdrawal->amount, 2) }}

Status

@if($withdrawal->status == 1) Pending @elseif($withdrawal->status == 2) Paid @elseif($withdrawal->status == 3) Cancelled @else Declined @endif

@endforeach @else

You've made no withdrawal requests yet

@endif

@endsection