{{-- SUPERADMIN (usertype == 1) - Show everything --}} @if (auth()->user()->usertype == 1)
  • आधारभूत विवरण
  • प्रमाणपत्र
  • आवेदनहरु (सम्पादन तथा नयाँ दर्ता गर्नको लागी)
  • नयाँ आवेदनहरु
  • श्रेणी परिवर्तन निवेदनहरू
  • स्वीकृत श्रेणी परिवर्तन निवेदनहरू
  • रुजु गरीएका आवेदनहरू
  • अस्वीकृत आवेदनहरु
  • ग्रा.प.स्वा.का. आवेदन
  • प्रतिवेदन
  • जिल्ला अनुसार प्रतिवेदन
  • @endif {{-- OFFICE USER (usertype == 2) - Show only reports --}} @if (auth()->user()->usertype == 2)
  • प्रतिवेदन
  • जिल्ला अनुसार प्रतिवेदन
  • @endif {{-- MEMBER (usertype == 3) - Current menu is correct --}} @if (auth()->user()->usertype == 3)
  • व्यक्तिगत विवरण प्रविष्टि
  • @php // Check if user has a member record with reg_no != 0 $userMember = DB::table('members') ->where('user_id', auth()->user()->id) ->where('reg_no', '!=', 0) ->first(); @endphp @if($userMember)
  • सदस्यता नवीकरण
  • विषेषज्ञता थप निवेदन
  • श्रेणी परिवर्तन निवेदन
  • @endif @endif {{-- VERIFIER (usertype == 4) - Show only new applications and approved applications --}} @if (auth()->user()->usertype == 4)
  • नयाँ आवेदनहरु
  • रुजु गरीएका आवेदनहरू
  • ग्रा.प.स्वा.का. आवेदन
  • @endif {{-- APPROVER (usertype == 5) - Show everything except आधारभूत विवरण --}} @if (auth()->user()->usertype == 5)
  • प्रमाणपत्र
  • आवेदनहरु (सम्पादन तथा नयाँ दर्ता गर्नको लागी)
  • नयाँ आवेदनहरु
  • {{--
  • श्रेणी परिवर्तन निवेदनहरू
  • --}}
  • रुजु गरीएका आवेदनहरू
  • अस्वीकृत आवेदनहरु
  • ग्रा.प.स्वा.का. आवेदन
  • प्रतिवेदन
  • जिल्ला अनुसार प्रतिवेदन
  • @endif