Laravel 5 widget for converting currency
therezor/laravel-currency-converter-widget is a Laravel package for laravel 5 widget for converting currency.
It currently has 2 GitHub stars and 11 downloads on Packagist.
Install it with composer require therezor/laravel-currency-converter-widget.
Discover more Laravel packages by therezor
or browse all Laravel packages to compare alternatives.
Last updated
Currency converter widget for laravel 5
Run composer require therezor/laravel-currency-converter-widget in your laravel project root folder
Register a service provider in the app.php configuration file
<?php
'providers' => [
...
Arrilot\Widgets\ServiceProvider::class,
TheRezor\CurrencyWidget\ServiceProvider::class,
],
?>
<?php
'aliases' => [
...
'Widget' => Arrilot\Widgets\Facade::class,
'AsyncWidget' => Arrilot\Widgets\AsyncFacade::class,
],
?>
Run php artisan vendor:publish
Add @widget('CurrencyConverter') into view where you want the widget to be