| Package Data | |
|---|---|
| Maintainer Username: | viirre |
| Maintainer Contact: | victor@adaptivemedia.se (Victor Eliasson) |
| Package Create Date: | 2016-08-11 |
| Package Last Update: | 2022-10-04 |
| Home Page: | |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-27 03:21:40 |
| Package Statistics | |
|---|---|
| Total Downloads: | 11,038 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
Install the package with Composer via the command line:
composer require adaptivemedia/laravel-pnr-validator
This package has auto discovery so you don't need to add the Service Provider.
Use it like any Validator rule:
$rules = [
'field' => 'pnr',
];
$rules = [
'field' => new PersonalIdentityNumber()
];
See the Validation documentation of Laravel.