dev-master
9999999-devLaravel 5 widget for converting currency
MIT
The Requires
- arrilot/laravel-widgets 3.2
- php >=5.5.9
- laravel/framework 5.*
by rezor
Laravel 5 widget for converting currency
Currency converter widget for laravel 5, (*1)
1) Run composer require therezor/laravel-currency-converter-widget
in your laravel project root folder, (*2)
2) Register a service provider in the app.php
configuration file, (*3)
[ ... Arrilot\Widgets\ServiceProvider::class, TheRezor\CurrencyWidget\ServiceProvider::class, ], ?>
3) Add some facades here too., (*4)
[ ... 'Widget' => Arrilot\Widgets\Facade::class, 'AsyncWidget' => Arrilot\Widgets\AsyncFacade::class, ], ?>
4) Run php artisan vendor:publish
, (*5)
5) Add @widget('CurrencyConverter')
into view where you want the widget to be, (*6)
Laravel 5 widget for converting currency
MIT