PHP code example of brokeyourbike / money-validation-laravel
1. Go to this page and download the library: Download brokeyourbike/money-validation-laravel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
brokeyourbike / money-validation-laravel example snippets
use Money\Currencies\ISOCurrencies;
use Money\Currencies;
public function register()
{
$this->app->singleton(Currencies::class, function () {
return new ISOCurrencies();
});
}
use Illuminate\Foundation\Http\FormRequest;
use BrokeYourBike\MoneyValidation\IsValidCurrency;
class ExampleRequest extends FormRequest
{
public function rules()
{
return [
'currency_code' => [
'