@php $utype = Auth::guard('admin')->user()->utype; $permissions = Auth::guard('admin')->user()->permissions; @endphp @if($utype=='Super')
  • {{ Auth::guard('admin')->user()->name }}
  • Dashboard
  • My Profile
    • My Profile
    • Change Password
  • Users
    • Add User
    • View Users
  • Receipts
    • New Receipt
    • View Receipts
  • Batch
    • Open Batch
    • Closing Batch
    • Accounting
    • Deposit Slips
  • Reports
    • Employee Reports
    • Donor Reports
  • Radiothon
  • Events
    • New Event
    • View Events
  • Transactions
@elseif($utype=='Admin')
  • {{ Auth::guard('admin')->user()->name }}
  • Dashboard
  • My Account
    • My Profile
    • Change Password
  • Receipts
    • New Receipt
    • View Receipts
  • Transactions
  • Batch
    • Open Batch
    • Close Batch
  • Reports
    • Employee Reports
    • Donor Reports
@elseif($utype=='Treasury')
  • Dashboard
  • My Account
    • My Profile
    • Change Password
  • Receipts
    • New Receipt
    • View Receipts
  • Close Batch
  • Accounting History
@elseif($utype=='Staff')
  • {{ Auth::guard('admin')->user()->name }}
  • Donations
  • Receipts
  • My Profile
  • Password
  • Logout
@else @endif