@vite(['resources/sass/app.scss', 'resources/js/app.js']) @include('sweetalert::alert')
Dashboard
@can('isMember')
Profile
Profile Components:
Personal Info
Nominees
Bank Details
My Accounts
Accounts:
Savings
Shares
Loans
Loan Application
Loans:
Loan Calculator
Apply Loan
Loan Status
Guarantorship
Guarantorship:
Guarantors
Guarantor Approvals
Dividents & Rebates
Dividents & Rebates:
Distribution
Account Statement
Dividents/Rebates Slip
@endcan @can('isAdmin')
Admin Access
@elsecan('isAccountant')
Accountant Access
@elsecan('isHR')
Secretary Access
@elsecan('isTreasurer')
Treasurer Access
@elsecan('isChairman')
Chairman Access
@elsecan('isSupervisor')
Supervisor Access
Access
@endcan @can('isAccountant')
Account Receivables
Manage:
Loan Repayments
Member Savings
Member Shares
Account Payables
Manage:
Supplier Listing
Expense Invoice
Payment Voucher
Cash Management
Manage:
Petty Cash
Bank Records
General Ledger
Manage:
Balance Sheet
@endcan @can('isAdmin')
Manage Users
Manage:
Join Requests
Users List
Logs
Settings
Manage:
Loan Types
Banks
@endcan @can('isTreasurer')
Loan Management
Manage:
Approve Loans
Loan Reports
@endcan @can('isHR')
Loan Management
Manage:
Approve Loans
Loan Reports
@endcan @can('isChairman')
Loan Management
Manage:
Approve Loans
Loan Reports
@endcan
{{ $unreadCount }}
Alerts Center
@foreach($notifications as $notification) @if ($notification->user_id === auth()->user()->id)
{{ $notification->created_at->format('F d, Y') }}
{{ $notification->message }}
@endif @endforeach
Show All Alerts
7
Message Center
Hi there! I am wondering if you can be my guarantor .
Emily Fowler · 58m
I can't guarantee you this time.
Jae Chun · 1d
Last month's report shows that you have not been paying your loan and I will be penalized!
Morgan Alvarez · 2d
Read More Messages
@php $user = auth()->user(); $photo = null; if ($user) { $member = \App\Models\Member::where('user_id', $user->id)->first(); if ($member) { $photo = $member->photo; } } @endphp
{{ $user ? $user->fname : '' }}
@if ($photo)
@else
@endif
Profile
Settings
Activity Log
{{ __('Logout') }}
@csrf
@yield('content')
@stack('scripts')