Package Data | |
---|---|
Maintainer Username: | juniorb2s |
Maintainer Contact: | juniorb2ss@gmail.com (Carlos Eduardo) |
Package Create Date: | 2017-09-05 |
Package Last Update: | 2017-09-05 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:16:54 |
Package Statistics | |
---|---|
Total Downloads: | 3 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
In .env file you need define your api pub key
MAILGUN_PUBKEY=pubkey-5ogiflzbnjrljiky49qxsiozqef5jxp7
To make validation:
use juniorb2ss\LaravelExtendedValidationRules\Rules\MailGunValidateEmailAddressRule;
return Validator::make($inputs, [
'name' => 'required|string|max:255',
'email' => [
'required',
'string',
'max:255',
'unique:users',
new MailGunValidateEmailAddressRule // to make validation in mailgun service
]
]);