@php $bankingCompanyId = auth()->user()->company_id; $useChequePrinting = \App\Models\Setting::get($bankingCompanyId, 'use_cheque_printing', '0') === '1'; $useChequeRegister = \App\Models\Setting::get($bankingCompanyId, 'use_cheque_register', '0') === '1'; $canViewBanking = auth()->user()->hasPermission('banking', 'view'); @endphp @if($canViewBanking) @if(($variant ?? 'sidebar') === 'dropdown')
  • Bank Reconciliation
  • @if($useChequePrinting)
  • Cheque Format
  • Cheque Print
  • @endif @if($useChequeRegister)
  • Cheque Books
  • Issued & Void Cheques
  • @endif @else Bank Reconciliation @if($useChequePrinting) Cheque Format Cheque Print @endif @if($useChequeRegister) Cheque Books Issued & Void Cheques @endif @endif @endif