@if (Auth::user()->id == 9 || Auth::user()->id == 10)
Transaction
@else
@php
$showUserSection = canView('Branch') || canView('User');
@endphp
@if ($showUserSection)
User
@endif
@php
$showLocationSection = canView('Country List') || canView('State List') || canView('City List');
@endphp
@if ($showLocationSection)
Location
@endif
@canView('Target Achievement')
Target Achievement
@endcanView
@canView('Setting')
Setting
@endcanView
@php
$showMasterSection =
canView('Party') ||
canView('Group') ||
canView('Category') ||
canView('Item') ||
canView('Tax') ||
canView('Rate') ||
canView('Material Rate') ||
canView('Charges') ||
canView('Expense Type') ||
canView('Income Type') ||
canView('Bank Master') ||
canView('Role Master');
@endphp
@if ($showMasterSection)
Master
@endif
@php
$showAccountingSection = canView('Income') || canView('Expense');
@endphp
@if ($showAccountingSection)
Accounting
@endif
@php
$showTransactionSection =
canView('Opening') ||
canView('Purchase Order') ||
canView('Sales Order') ||
canView('Quotation') ||
canView('Credit Note') ||
canView('Purchase Return') ||
canView('Sales Return');
@endphp
@if ($showTransactionSection)
Transaction
@endif
@php
$showLabelSection = canView('Label Preparation') || canView('Label Transfe') || canView('Label Wt Change');
@endphp
@if ($showLabelSection)
Label
@endif
@php
$showJobWorkSection = canView('Issue') || canView('Return');
@endphp
@if ($showJobWorkSection)
Job Work
@endif
Stock Tally
@php
$showReportSection =
canView('Purchase Report') ||
canView('Sales Report') ||
canView('Stock Report') ||
canView('Party Account Report') ||
canView('Profit & Loss Report');
@endphp
@if ($showReportSection)
Report
@endif
@endif