13 lines
484 B
PHP
13 lines
484 B
PHP
<?php
|
|
|
|
/**
|
|
* Menu consolidation flags (Plan A: menu-only, all backends preserved).
|
|
* Set any flag to false to restore the previous duplicate menu layout.
|
|
*/
|
|
return [
|
|
'unified_warehousing_menu' => env('MENU_UNIFIED_WAREHOUSING', true),
|
|
'unified_accounting_reports' => env('MENU_UNIFIED_ACCOUNTING_REPORTS', true),
|
|
'unified_projects_menu' => env('MENU_UNIFIED_PROJECTS', true),
|
|
'unified_production_line_labels' => env('MENU_UNIFIED_PRODUCTION_LINE_LABELS', true),
|
|
];
|