laravel-nova-currency maintained by wamesk
Last update
2025/10/15 11:19
License
Require
- calebporzio/sushi ^v2.5
- interaction-design-foundation/nova-html-card ^3.4
- laravel/nova ^5.0
- moneyphp/money ^4.6
Last update
2025/10/15 11:19
License
Require
- calebporzio/sushi ^v2.5
- interaction-design-foundation/nova-html-card ^3.4
- laravel/nova ^5.0
- moneyphp/money ^4.6
Last update
2025/06/06 10:41
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2025/06/06 10:41
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2025/02/20 16:52
License
Require
- calebporzio/sushi ^v2.5
- interaction-design-foundation/nova-html-card ^3.4
- laravel/nova ^5.0
- moneyphp/money ^4.6
Last update
2025/01/24 12:33
License
Require
- calebporzio/sushi ^v2.5
- interaction-design-foundation/nova-html-card ^3.4
- laravel/nova ^5.0
- moneyphp/money ^4.6
Last update
2025/01/24 12:31
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/09/04 10:37
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/08/06 16:05
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/07/16 10:11
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/07/04 15:29
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/06/27 14:03
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/06/26 14:37
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/06/26 12:06
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/06/13 16:40
License
Require
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
- laravel/nova ^4.0
- moneyphp/money ^4.5
Last update
2024/05/07 10:53
License
Require
- laravel/nova ^4.0
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
Last update
2024/05/03 10:53
License
Require
- laravel/nova ^4.0
- calebporzio/sushi ^v2.5.2
- interaction-design-foundation/nova-html-card ^3.0
Last update
2023/11/21 10:52
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Last update
2023/11/14 11:23
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Last update
2023/11/07 12:56
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Last update
2023/10/18 16:20
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Last update
2023/08/01 11:04
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Last update
2023/06/27 09:24
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Last update
2023/03/02 14:27
License
Require
- laravel/nova ^4.0
- interaction-design-foundation/nova-html-card ^3.0
- wamesk/laravel-commands ^1.0
Laravel Nova 5 Currency
Requirements
laravel/nova: ^5.0
Installation
composer require wamesk/laravel-nova-currency
php artisan migrate
php artisan db:seed --class=CurrencySeeder
Usage
Select::make(__('laravel-nova-currency::customer.field.currency'), 'currency_code')
->help(__('laravel-nova-currency::customer.field.currency.help'))
->options(fn () => CurrencyService::getListForSelect())
->searchable()
->required()
->rules('required')
->onlyOnForms(),
BelongsTo::make(__('laravel-nova-currency::customer.field.currency'), 'currency', Currency::class)
->displayUsing(fn () => CurrencyService::displayUsing($request, $this))
->sortable()
->filterable()
->showOnPreview()
->exceptOnForms(),
Updating the exchange rates
This package also includes a scheduling command to start updating the exchange rates from European Central Bank every weekday at 16:15.