Phone Number Validation Laravel

[Solved] Phone Number Validation Laravel | Php - Code Explorer | yomemimo.com
Question : laravel validate telephone number

Answered by : valentinorossi

SEVERAL WAYS TO DO IT:
------
* by using regex in the suitable Laravel Controller:
'phone' => 'required|regex:/(01)[0-9]{9}/' => ( add 'required' only if the field is required, else delete it!)
OR smthin like dis
'phone_number' => 'required|regex:/^([0-9\s\-\+\(\)]*)$/|min:10'
---------
* use this library: https://github.com/propaganistas/laravel-phone
---------
* use this in the corresponding laravel Controller: 'phone' => 'required | numeric | digits:10 | starts_with: 6,7,8,9'
---------
* You can use a service like Nexmo or Twilio if you need to properly validate phone numbers.

Source : https://stackoverflow.com/questions/36777840/how-to-validate-phone-number-in-laravel-5-2 | Last Update : Thu, 30 Dec 21

Question : mobile number validation in laravel 8

Answered by : kinjal-suryavanshi

'mobile' => 'required|min:10|max:10',

Source : | Last Update : Thu, 23 Dec 21

Question : mobile number validation in laravel 8

Answered by : kinjal-suryavanshi

'mobile' => 'required|digits:10'

Source : | Last Update : Thu, 23 Dec 21

Question : laravel form validation phone number

Answered by : yohana-galusi

'phone' => 'required|regex:/(01)[0-9]{9}/'

Source : https://stackoverflow.com/questions/36777840/how-to-validate-phone-number-in-laravel-5-2 | Last Update : Mon, 09 May 22

Question : phone number validation, laravel

Answered by : handsome-hamerkop-m30inil7v3zf

'phone' => 'required|regex:/(01)[0-9]{9}/'

Source : https://stackoverflow.com/questions/36777840/how-to-validate-phone-number-in-laravel-5-2 | Last Update : Sun, 31 Oct 21

Question : validate phone number with dial code laravel 8

Answered by : amit-rajput

'mobile' => ['required', function ($attribute, $value, $fail) use ($parameters) { if (($value + strlen($parameters['code'])) < 15) { $fail('Mobile number is too long'); } }

Source : | Last Update : Wed, 09 Feb 22

Answers related to phone number validation laravel

Code Explorer Popular Question For Php