therezor / laravel-currency-converter by therezor

Laravel 5 widget for converting currency
11
2
2
Package Data
Maintainer Username: therezor
Maintainer Contact: zmrezor@gmail.com (rezor)
Package Create Date: 2016-01-24
Package Last Update: 2016-01-24
Language: PHP
License: MIT
Last Refreshed: 2024-04-30 15:11:24
Package Statistics
Total Downloads: 11
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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