@if($loan->status == 1) @endif @if($loan->status == 2) @endif @if($loan->status == 3) @endif @if ($loan->status == 0) @if ($loan->canDisburse())

* You are not required to do anything at this point

@else @php($collectionMethods = json_decode($loan->collection_methods) ?? []) @foreach($collectionMethods as $method) @switch ($method->code) @case (App\Helpers\Constants::DDM_REMITA)
DDM REMITA ({{ $method->type }})
@if ($method->status == 1) Print Mandate

* You'll need to print the mandate and take it to your bank for activation. Ignore if you have done this already.

@elseif ($method->status == 2) @endif

@break @case (App\Helpers\Constants::DAS_REMITA) @break @case (App\Helpers\Constants::DAS_IPPIS) @case (App\Helpers\Constants::DAS_RVSG) @php($type = $method->code === App\Helpers\Constants::DAS_IPPIS ? 'ippis': 'rvsg')
{{ strtoupper($type) }} DAS ({{ $method->type }})
@if ($method->status == 1)

Get your Authority Form Here. Use the Form below to upload when you are done.


@csrf

* Ignore if this document shows up in your "Loan Documents Section"


@elseif ($method->status == 2) @elseif ($method->status == 4) @endif

@break @endswitch @endforeach @endif @endif