@extends('layouts.app') @section('content')

My Enquiries

@if(auth()->user()->hasRole('loanofficer'))

Loan Applications

@include('loans.loan_applications') {{-- Including the Loan Applications view --}}
@endif @if(auth()->user()->hasRole('accountant'))

Accountant Actions

@include('payments.accountant_actions') {{-- Including the Accountant Actions view --}}
@endif
@endsection