Validate educational email addresses for student status verification.
codelayer/laravel-student-validator is a Laravel package for validate educational email addresses for student status verification..
It currently has 3 GitHub stars and 2 downloads on Packagist (latest version v1.0.0).
Install it with composer require codelayer/laravel-student-validator.
Discover more Laravel packages by codelayer
or browse all Laravel packages to compare alternatives.
Last updated
This package can be used to validate college and university student's email addresses.
You can install the package using composer:
composer require codelayer/laravel-student-validator
If you wish to customize the package's translation, you can publish the translation files:
php artisan vendor:publish --provider="Codelayer\StudentValidator\StudentValidatorServiceProvider"
Simply use the StudentEmail rule inside your rules array, e.g. in a form request:
use Codelayer\StudentValidator\Rules\StudentEmail;
public function rules()
{
return [
'email' => ['required', 'email', new StudentEmail()],
];
}
codelayer is a web development agency based in Karlsruhe, Germany. This package was developed for use in our product likvi.
The MIT License (MIT).