@extends('dashboard.user.layouts.master') @section('content')

{{ $title }}

@include('dashboard.user.layouts.components.breadcrumbs')
@include('dashboard.user.components.menu')

{{ $title }}

@csrf
@error('amount') {{ $message }} @enderror
@error('duration_months') {{ $message }} @enderror

Loan History

@foreach ($loans as $index => $loan) @endforeach
# Amount Status Action
{{ $index + 1 }} {{ currency($loan->user->currency) }}{{ formatAmount($loan->amount) }} {{ $loan->status->label() }}
@endsection