laravel-enso / currencies
Installs: 1 430
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 5
Open Issues: 0
Requires
- laravel-enso/api: ^1.3
- laravel-enso/core: ^10.0
- laravel-enso/countries: ^2.0
- laravel-enso/forms: ^4.0
- laravel-enso/helpers: ^3.0
- laravel-enso/migrator: ^2.0
- laravel-enso/select: ^4.0
- laravel-enso/tables: ^4.0
- dev-master
- 3.2.0
- 3.1.1
- 3.1.0
- 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
- dev-upgrade/laravel11
- dev-upgrade/enso6-dr
- dev-feature/dropSuffix
- dev-fixes-seeder-namespace
- dev-upgrade/laravel8
- dev-fixes/stylci
This package is auto-updated.
Last update: 2024-11-11 12:14:35 UTC
README
Currencies is an extension of the Laravel Enso enviroment, designed for management of currencies and exchange rates.
Note: The package cannot be used outside of Enso enviroment and is not included in Laravel Enso 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-enso/currencies
- adds the following alias in
webackpack.mix.js
.webpackConfig({
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
//other aliases
'@currencies': `${__dirname}/vendor/laravel-enso/currencies/src/resources/js`,
},
},
})
- in
resources/js/router.js
file, verify thatRouteMerger
is imported, or import it
import RouteMerger from '@core-modules/importers/RouteMerger';
- make sure
routeImporter
is also imported
import routeImporter from '@core-modules/importers/routeImporter';
- then use
RouteMerger
to 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.js
import the package's icons
import '@currencies/icons'
- make sure
hot module replacement
is not active, and runyarn dev
ornpm 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.