@extends('layouts.dash2') @section('title', $title) @section('content')
@include('partials._mobile_header', [ 'title' => 'Loan History', 'showBackButton' => true, 'backUrl' => route('dashboard'), 'showNotifications' => true, 'showDarkMode' => true, 'financeUser' => Auth::user() ])
@forelse($loans as $loan) @empty @endforelse
Type Amount Status
{{ Auth::user()->s_curr }}{{ number_format($loan->amount, 2) }}
{{ Auth::user()->curr }}
@if($loan->active == 'Processed') {{ $loan->active }} @else {{ $loan->active }} @endif

No loan applications found

Try adjusting your search criteria

Apply for a Loan

Filter Loans

Export Loans

@csrf
@endsection