@extends('admin.layout') @section('custom-style') @endsection @section('content')

Perform action on a withdrawal request

{{$user->name}} {{$user->surname}}

requested withdrawal of

$ {{$withdrawal_req->amount}}

@if($withdrawal_req->status == 'requested') @if($withdrawal_req->type == 'monthly_payout') @php $with_type = "Monthly Payout"; @endphp Approve Monthly Payout @elseif($withdrawal_req->type == 'withdrawal') @php $with_type = "Withdrawal"; @endphp Aprrove Withdrawal @endif @else @if($withdrawal_req->type == 'monthly_payout') @php $with_type = "Monthly Payout"; @endphp @elseif($withdrawal_req->type == 'withdrawal') @php $with_type = "Withdrawal"; @endphp @endif @endif Withhold Funds Decline {{ $with_type }} Pause Payout
@if ($errors->any())
@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif @if(\Session::has('error'))
  • {!! \Session::get('error') !!}
  • @endif @if(\Session::has('warning'))
  • {!! \Session::get('warning') !!}
  • @endif @if(\Session::has('success'))
  • {!! \Session::get('success') !!}
  • @endif
    @endsection @section('custom-scripts') @endsection