therezor / laravel-currency-converter-widget
Laravel 5 widget for converting currency
Package info
github.com/therezor/laravel-currency-converter
pkg:composer/therezor/laravel-currency-converter-widget
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: 2026-02-26 00:09:19 UTC
README
Currency converter widget for laravel 5
Installation
-
Run
composer require therezor/laravel-currency-converter-widgetin your laravel project root folder -
Register a service provider in the
app.phpconfiguration 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