Laravel URL validation not working

Created at 04-Oct-2021 , By samar

Laravel URL validation not working

In this tutorial, we will try to find the solution to "Laravel URL validation not working" through programming.

There could be any reason for laravel URL validation not working in your case. Here we provides some validation rules which helps you to validate URL.
  • URL validation in laravel

    public function store(Request $request){
        $request->validate([
            'website' => 'required|url',
        ]);
    }
    

    You can validate a website URL in laravel using url rule in validate() method.

  • Laravel URL validation with https using regex

    //Inside controller's method
    $regex = '/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/';
    $request->validate([
        'url' => 'required|regex:'.$regex,
    ]);
    

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.