juniorb2ss/laravel-extended-validation-rules

Rules to make easy validations in laravel 5.5.
4 1
Install
composer require juniorb2ss/laravel-extended-validation-rules
Latest Version:1.0.0
PHP:>=7.1.0
License:MIT
Last Updated:Sep 5, 2017
Links: GitHub  ·  Packagist
Maintainer: juniorb2s

Laravel 5.5 Rules Extends

Validate Email With Mailgun Service

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
        ]
    ]);

Related Packages

juniorb2ss/deathbycaptcha-php-sdk

With Death by Captcha you can solve any CAPTCHA. All you need to do is implement...

19,197 6
mews/purifier

Laravel 5/6/7/8/9/10 HtmlPurifier Package

19,210,708 1,979
kyslik/column-sortable

Package for handling column sorting in Laravel 6.x

5,992,968 647
mews/captcha

Laravel 5/6/7/8/9/10/11/12 Captcha Package

5,885,470 2,579