LaravelPackages.net
Acme Inc.
Toggle sidebar
therezor/laravel-currency-converter-widget

Laravel 5 widget for converting currency

11
2
About therezor/laravel-currency-converter-widget

therezor/laravel-currency-converter-widget is a Laravel package for laravel 5 widget for converting currency. It currently has 2 GitHub stars and 11 downloads on Packagist. Install it with composer require therezor/laravel-currency-converter-widget. Discover more Laravel packages by therezor or browse all Laravel packages to compare alternatives.

Last updated

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

Comments