@extends('includes.adminlayout') @section('content')

Manage Loan Requests

@forelse ($loans as $loan) @empty @endforelse
User Amount Monthly Income Subject Note Date
{{ $loan->user->name }} {{ $loan->total_amount }} {{ $loan->income }} {{ $loan->subject }} {{ $loan->short_note }} {{ $loan->created_at }}
No loan requests yet.
{{ $loans->links() }}
@endsection