mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
* Move Mail, PDF configuration to Database, standardize configurations * Set default currency to USD on install * Pint code
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(),
|
|
|
|
];
|