laravel-validation-rules/phone

Validate that a phone number is in the correct format
376,086 69
Install
composer require laravel-validation-rules/phone
Latest Version:2.1.0
PHP:^8.0
License:Apache-2.0
Last Updated:Mar 9, 2026
Links: GitHub  ·  Packagist
Maintainer: ssx

Phone

Validates phone number format.

Installation

composer require laravel-validation-rules/phone

Usage

use LVR\Phone\Phone;
use LVR\Phone\E123;
use LVR\Phone\E164;
use LVR\Phone\NANP;
use LVR\Phone\Digits;

// Test any phone number
$request->validate(['test' => '15556667777'], ['test' => new Phone]); // Pass!
$request->validate(['test' => '+15556667777'], ['test' => new Phone]); // Pass!
$request->validate(['test' => '+1 (555) 666-7777'], ['test' => new Phone]); // Pass!

// Test for E123
$request->validate(['test' => '+22 555 666 7777'], ['test' => new E123]); // Pass!

// Test for E164
$request->validate(['test' => '+15556667777'], ['test' => new E164]); // Pass!

// Test for NANP (North American Numbering Plan)
$request->validate(['test' => '+1 (555) 666-7777'], ['test' => new NANP); // Pass!

// Test for digits only
$request->validate(['test' => '15556667777'], ['test' => new Digits]); // Pass!

Related Packages

laravel-validation-rules/us-phone

Validate that a phone number is in the correct format

0 0
tylercd100/laravel-validator-phone

Validate that a phone number is in the correct format

4,377 3
laravel-validation-rules/us-state

Validate US States and Canada Provinces

183,845 16
tylercd100/laravel-validator-state

Validate that a states and provinces for US and Canada

44 1
tylercd100/laravel-validator-color

Validate that a certain value is a valid CSS color string in Laravel 5

81,186 15