| 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: | 2025-11-02 15:13:20 |
| Package Statistics | |
|---|---|
| Total Downloads: | 4 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 0 |
| 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
]
]);