@extends('layouts.app') @section('content')
@if(auth()->user()->hasRole('loanofficer'))

Loan Applications

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

Superadmin Actions

@include('uramobile.admin_actions') {{-- Including theadmin Actions view --}}
@endif @if(auth()->user()->hasRole('accountant'))

Accountant Actions

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