laravel-liberu / currencies
                                    Fund package maintenance!
                                                                            
                                                                                                                                        laravel-liberu
                                                                                    
                                                                
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/laravel-liberu/currencies
Requires
- laravel-liberu/api: ^1.3
- laravel-liberu/core: ^8.0
- laravel-liberu/countries: ^2.0
- laravel-liberu/forms: ^4.0
- laravel-liberu/helpers: ^2.0
- laravel-liberu/migrator: ^2.0
- laravel-liberu/select: ^4.0
- laravel-liberu/tables: ^4.0
Requires (Dev)
- rector/rector: ^0.17.0
- dev-main
- v3.0.7
- v3.0.6
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- 3.0.0
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.2
- 2.0.1
- 2.0.0
- 1.6.8
- 1.6.7
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.13
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2025-10-14 12:50:32 UTC
README
Currencies is an extension of the Laravel Liberu enviroment, designed for management of currencies and exchange rates.
Note: The package cannot be used outside of Liberu enviroment and is not included in Laravel Liberu Core packages.
Features
- handles CRUD operations for currencies and exchange rates
- manages the default currency for your project
- exchange rates can be input for a given day
- comes with an included currencies seeder which can be published and further customized
- includes front-end assets
Instalation
- install the package using composer: composer require laravel-liberu/currencies
- adds the following alias in webackpack.mix.js
.webpackConfig({
        resolve: {
            extensions: ['.js', '.vue', '.json'],
            alias: {
                 //other aliases
                '@currencies': `${__dirname}/vendor/laravel-liberu/currencies/src/resources/js`,
            },
        },
    })
- in resources/js/router.jsfile, verify thatRouteMergeris imported, or import it
import RouteMerger from '@core-modules/importers/RouteMerger';
- make sure routeImporteris also imported
import routeImporter from '@core-modules/importers/routeImporter';
- then use RouteMergerto import front-end assets using the alias defined inwebpack.mix.js
(new RouteMerger(routes))
    .add(routeImporter(require.context('./routes', false, /.*\.js$/)))
    .add(routeImporter(require.context('@currencies/routes', false, /.*\.js$/)));
- in resources/js/app.jsimport the package's icons
import '@currencies/icons'
- make sure hot module replacementis not active, and runyarn devornpm run dev
Publishes
- you can publish the currency seeder and customize it to your liking
php artisan vendor:publish --tag=currency-seeder
Icons
The package uses the following icons:
- coins
- bar-chart
Contributions
are welcome. Pull requests are great, but issues are good too.
License
This package is released under the MIT license.