mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-09 14:34:47 +00:00
23 lines
600 B
PHP
23 lines
600 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Class Aliases
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This array of class aliases will be registered when this application
|
|
| is started. You may add any additional class aliases which should
|
|
| be loaded to the array. For speed, all aliases are lazy loaded.
|
|
|
|
|
*/
|
|
|
|
'aliases' => Facade::defaultAliases()->merge([
|
|
'Menu' => Lavary\Menu\Facade::class,
|
|
])->toArray(),
|
|
|
|
];
|