therezor/laravel-currency-converter-widget

Laravel 5 widget for converting currency

Downloads

11

Stars

2

Version

Laravel Currency Converter

Currency converter widget for laravel 5

Installation

  1. Run composer require therezor/laravel-currency-converter-widget in your laravel project root folder

  2. Register a service provider in the app.php configuration file

<?php

'providers' => [
    ...
    Arrilot\Widgets\ServiceProvider::class,
    TheRezor\CurrencyWidget\ServiceProvider::class,
],
?>
  1. Add some facades here too.
<?php

'aliases' => [
    ...
    'Widget'       => Arrilot\Widgets\Facade::class,
    'AsyncWidget'  => Arrilot\Widgets\AsyncFacade::class,
],
?>
  1. Run php artisan vendor:publish

  2. Add @widget('CurrencyConverter') into view where you want the widget to be

therezor

Author

therezor