soved/laravel-phone-number-validation

Validate a phone number
3,071 4
Install
composer require soved/laravel-phone-number-validation
Latest Version:v1.3.1
PHP:^7.1
License:MIT
Last Updated:Sep 11, 2020
Links: GitHub  ·  Packagist
Maintainer: sander3

Validate a phone number

Scrutinizer Code Quality Latest Stable Version Monthly Downloads License

Using Laravel's powerful validation feature.

Requirements

  • PHP >= 7.1
  • Laravel >= 5.5 or 6.0

Installation

Install the package via the Composer package manager:

$ composer require soved/laravel-phone-number-validation

Usage

You may use the phone number validation as any other validation rule:

<?php

$request->validate([
    'phone_number' => 'required|string|phone_number',
]);

If needed, you may customize the validation error message by adding an entry to the validation language file:

'phone_number' => 'The phone number format is invalid.',

'accepted' => 'The :attribute must be accepted.',

// The rest of the validation error messages...

Security Vulnerabilities

If you discover a security vulnerability within this project, please send an e-mail to Sander de Vos via sander@tutanota.de. All security vulnerabilities will be promptly addressed.

License

This package is open-source software licensed under the MIT license.

Related Packages

prettus/laravel-validation

Laravel Validation Service

11,913,613 406
pixelpeter/laravel5-isocodes-validation

Laravel 5 wrapper for the IsoCodes Validation library from ronanguilloux

87,867 19
skysplit/laravel5-intl-translation

Laravel 5 package for better translation syntax using php-intl extension

106,829 10
propaganistas/laravel-phone

Adds phone number functionality to Laravel based on Google's libphonenumber API.

44,002,337 3,033