2024-08-10 13:30:03 -05:00
|
|
|
<?php
|
2025-01-28 17:14:49 -06:00
|
|
|
|
2025-01-28 17:33:54 -06:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2025-04-09 19:25:15 -05:00
|
|
|
use App\Models\Currency;
|
2024-08-10 13:30:03 -05:00
|
|
|
|
2025-04-09 19:25:15 -05:00
|
|
|
if (! function_exists('currency')) {
|
|
|
|
|
|
|
|
|
|
// /**
|
|
|
|
|
// * Returns an instance of the currency model
|
|
|
|
|
// * */
|
|
|
|
|
// function currency(): Currency
|
|
|
|
|
// {
|
|
|
|
|
// return new Currency;
|
|
|
|
|
// }
|
|
|
|
|
}
|