{{-- # ────────────── lee_gwena ────────────── # Code by: ashley_gwena # Created: 2026-03-12 # Notes: Module edit menu navigation # ─────────────────────────────────────── --}} @extends('layouts.master') @section('title', 'Edit Module - ') @section('content')
@php $authUser = auth()->user(); @endphp

Edit Menu

Manage and configure your law firm's modules and settings

@if($authUser?->canFeature('general-ledger', 'can_view'))

Chart of Accounts

Manage your accounting structure and financial categories

Edit Settings
@endif @if($authUser?->canFeature('clients', 'can_view'))

Client

Configure client management settings and information

Edit Settings
@endif @if($authUser?->canFeature('cashbooks', 'can_view'))

Cashbooks

Manage cashbook accounts, bank details, and GL links

Edit Settings
@endif @if($authUser?->canFeature('cases', 'can_view'))

Cases

Add new cases and view/manage existing cases

Manage Cases
@endif @if($authUser?->canFeature('matters', 'can_view') ?? true)

Matters

Manage matters, conflict checks, and litigation extensions

Manage Matters
@endif @if($authUser?->canFeature('lawyers', 'can_view'))

Lawyer

Configure lawyer profiles, specializations, and assignments

Edit Settings
@endif @if($authUser?->canFeature('court-types', 'can_view') || $authUser?->canFeature('court-areas', 'can_view'))

Court Details

Manage court information, jurisdictions, and proceedings

Edit Settings
@endif @if($authUser?->canFeature('suppliers', 'can_view'))

Suppliers

Configure supplier details and vendor management settings

Edit Settings
@endif @if($authUser?->canFeature('taxes', 'can_view'))

Tax

Manage tax rates, categories, and calculation settings

Edit Settings
@endif @if($authUser?->canFeature('multi-currency', 'can_view'))

Multi Currency

Configure currency settings and exchange rate management

Edit Settings
@endif
@endsection