1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-12 19:34:02 +00:00

Allow customization of default CurrencyManager

This commit is contained in:
Mikael Dalholm 2021-12-28 18:05:09 +01:00
parent 4474c2b115
commit 35304109e5
5 changed files with 71 additions and 1 deletions

13
config/config.php Normal file
View file

@ -0,0 +1,13 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Currency Manager
|--------------------------------------------------------------------------
| You can customize CurrencyManager as you wish.
| Be sure to extend the CurrencyManager class as you do so.
|
*/
'manager' => \ArchTech\Money\CurrencyManager::class,
];