Download the PHP package brendi211/currency_laravel without Composer
On this page you can find all versions of the php package brendi211/currency_laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download brendi211/currency_laravel
More information about brendi211/currency_laravel
Files in brendi211/currency_laravel
Download brendi211/currency_laravel
More information about brendi211/currency_laravel
Files in brendi211/currency_laravel
Vendor brendi211
Package currency_laravel
Short Description This provides Laravel with currency functions such as currency formatting and conversion using up-to-date exchange rates.
License BSD-2-Clause
Package currency_laravel
Short Description This provides Laravel with currency functions such as currency formatting and conversion using up-to-date exchange rates.
License BSD-2-Clause
Please rate this library. Is it a good library?
Informations about the package currency_laravel
Composer From the command line run:
composer require brendi211/currency
Manual Setup Once installed you need to register the service provider with the application. Open up config/app.php and find the providers key.
'providers' => [
\Brendi211\Currency\CurrencyServiceProvider::class,
]
This package also comes with a facade, which provides an easy way to call the the class. Open up config/app.php and find the aliases key.
'aliases' => [
'Currency' => \Brendi211\Currency\Facades\Currency::class,
];
next
php artisan vendor:publish --provider="Brendi211\Currency\CurrencyServiceProvider" --tag=config
A configuration file will be published to config/currency.php.
Migration
php artisan vendor:publish --provider="Brendi211\Currency\CurrencyServiceProvider" --tag=migrations
Run this on the command line from the root of your project to generate the table for storing currencies:
php artisan migrate
Middleware
protected $middleware = [
\Illuminate\Session\Middleware\StartSession::class
\Brendi211\Currency\Middleware\CurrencyMiddleware::class,
]
All versions of currency_laravel with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.2|^8.0
illuminate/support Version ^6.0|^7.0|^8.0|^9.0
illuminate/console Version ^6.0|^7.0|^8.0|^9.0
illuminate/cache Version ^6.0|^7.0|^8.0|^9.0
illuminate/support Version ^6.0|^7.0|^8.0|^9.0
illuminate/console Version ^6.0|^7.0|^8.0|^9.0
illuminate/cache Version ^6.0|^7.0|^8.0|^9.0
The package brendi211/currency_laravel contains the following files
Loading the files please wait ....