therezor / laravel-currency-converter-widget
Laravel 5 widget for converting currency
dev-master
2016-01-24 23:21 UTC
Requires
- php: >=5.5.9
- arrilot/laravel-widgets: 3.2
- laravel/framework: 5.*
This package is auto-updated.
Last update: 2024-12-25 21:30:39 UTC
README
Currency converter widget for laravel 5
Installation
-
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, ], ?>
- Add some facades here too.
<?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