therezor / laravel-currency-converter-widget
Laravel 5 widget for converting currency
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/therezor/laravel-currency-converter-widget
Requires
- php: >=5.5.9
- arrilot/laravel-widgets: 3.2
- laravel/framework: 5.*
This package is auto-updated.
Last update: 2025-10-25 23:21:44 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