https://github.com/wotta/iban-validation
A Laravel Nova iban field.
https://github.com/wotta/iban-validation
Last synced: 5 months ago
JSON representation
A Laravel Nova iban field.
- Host: GitHub
- URL: https://github.com/wotta/iban-validation
- Owner: wotta
- License: mpl-2.0
- Created: 2018-08-23T20:42:58.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2018-08-24T06:05:59.000Z (about 7 years ago)
- Last Synced: 2024-10-06T20:48:01.659Z (about 1 year ago)
- Language: Vue
- Size: 176 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# About iban validation
A small package for an iban validation field for laravel nova.
It checks in the vue file if it is an valid iban but it won't stop you from submitting the form.
### If you want to install this do the following
You need to run the following command :
`$ composer require wotta/iban-validation`
The validation field needs to be called in the following way :
```
IbanValidation::make('iban')
->sortable()
->rules('required', 'max:32'),
```