extradevs / laravel-mnb
Laravel MNB (Magyar Nemzeti Bank)
v2.1.0
2024-06-06 12:57 UTC
Requires
- php: ^8.1
- extradevs/mnb: 2.0.0
- illuminate/cache: ^10
- illuminate/support: ^10
Requires (Dev)
- mockery/mockery: 1.6.12
- orchestra/testbench: ^8.42.2
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-03-28 12:42:19 UTC
README
Requirements
Package requires Soap and version 7.1 of PHP or higher.
Know-how
This package was built on top of this MNB package. Please check out for corresponding documentations.
Install
composer require extradevs/laravel-mnb
Configuration
Export
php artisan vendor:publish --provider="SzuniSoft\Mnb\Laravel\MnbServiceProvider" --tag="config"
config/mnb-exchange.php
/*
* Wsdl file location.
* */
'wsdl' => env('MNB_SOAP_WSDL', 'http://www.mnb.hu/arfolyamok.asmx?wsdl'),
'cache' => [
/*
* Desired cache driver for service.
* */
'store' => env('MNB_CACHE_DRIVER', 'file'),
/*
* Minutes the cached currencies will be held for.
* Default: 24hrs (1440)
* */
'minutes' => env('MNB_CACHE_MINUTES', 1440),
]
Usage
Access via facade
use Extradevs\Mnb\Laravel\Facade\Mnb
$currency = Mnb::currentExchangeRate('EUR');
Resolve by application container
$currency = app(\Extradevs\Mnb\Laravel\Client::class)->currentExchangeRate('EUR');
Access refresh date by reference
You can check the feed date by passing a $date variable to some methods. These methods will make variable to be a Carbon instance.
Mnb::exchangeRates($date);
$date->isToday();
Available methods
Won't use cache
These methods won't use and update cache.
- currentExchangeRate($code, &$date = null): Currency
- currentExchangeRates(&$date = null): array of Currency
Will use cache
These methods will use cache.
- exchangeRate($code, &$date = null): single Currency
- exchangeRates(&$date = null): array of currencies
- currencies(): array of strings (each is currency code)
- hasCurrency($code): bool