Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

mobile no validation laravel

/*
|=======================================================
| Mobile-No & Phone-No Validation in laravel
|=======================================================
*/

// For Digits
1) 'mobile_no' => 'required|numeric|digits:10' // For Fix no of digits
2) 'mobile_no' => 'required|numeric|digits_between:8,10' // For Digits Range

// For Fix No of Strings
1) 'mobile_no' => 'required|string|size:10' // For String Fix-Length
2) 'mobile_no' => 'required|string|min:8|max:10' // For String Range

// Regix
1) 'mobile_no' => 'required|regex:/(01)[0-9]{9}/'
 
PREVIOUS NEXT
Tagged: #mobile #validation #laravel
ADD COMMENT
Topic
Name
8+6 =