@extends('admin.layout') @section('custom-style') @endsection @section('content') @php $date = (isset($_GET['date'])) ? $_GET['date'] : ''; @endphp @php $searchText = (isset($_GET['searchText'])) ? $_GET['searchText'] : ''; @endphp

Manage Accounts' Paused Payouts

@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

    Accounts' Paused Payouts

    @if(\Session::has('delete'))
  • {!! \Session::get('delete') !!}
  • @endif
    @isset($clients_paused_payouts) @foreach($clients_paused_payouts as $client) @endforeach @endisset
    S.No. User Staff No. ID No. Preferred Payment method Actions
    {{$loop->iteration}} {{optional($client->users)->name}} {{optional($client->users)->surname}} {{optional($client->staff_details)->staff_number}} {{optional($client->staff_details)->id_number}} @isset(optional($client->preferred_payment_method)->preferred) @if(optional($client->preferred_payment_method)->preferred == 'paypal') @php $payment_method = "Paypal"; @endphp @elseif(optional($client->preferred_payment_method)->preferred == 'mobile-money') @php $payment_method = "Mobile Money"; @endphp @elseif(optional($client->preferred_payment_method)->preferred == 'bank-transfer') @php $payment_method = "Bank Transfer"; @endphp @elseif(optional($client->preferred_payment_method)->preferred == 'bankers-cheque') @php $payment_method = "Banker's Cheque"; @endphp @else @php $payment_method = ""; @endphp @endif {{ $payment_method }} @else

    Not Set Up

    @endisset
    Resume payout
    @endsection @section('custom-scripts') @endsection