ItSolutionStuff.com

Laravel 5.5 - Validation Data Return - New Feature

By Hardik Savani • November 5, 2023
PHP Laravel

laravel released 5.5 version a few days ago and they also introduce several new feature. So in this post i will let you know one new feature, they provide new way to validation check using request() and validate().

In this post i will give you three way to check validation and store input data into variable. So let's simple see how we can check and return back to validation. so just check bellow way to check validation:

Example 1:

public function store()

{

$this->validate(request(), [

'name' => 'required',

'email' => 'required|email'

]);


return User::create(request()->all());

}

Example 2:

public function store()

{

$user = $this->validate(request(), [

'name' => 'required',

'email' => 'required|email'

]);


return User::create($user);

}

Example 3:

public function store()

{

$user = request()->validate([

'name' => 'required',

'email' => 'required|email'

]);


return User::create($user);

}

i hope it can help you....

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 5.4 New Feature - Add Eloquent WhereKey Method Example

Read Now →

Laravel 5.3 - Form Input Validation rules example with demo

Read Now →

Laravel $loop Variable New Feature Example

Read Now →

Laravel File Upload with Validation Example

Read Now →

Laravel Client Side Validation using Parsley.js Example

Read Now →

Laravel Create Custom Validation Rule Example

Read Now →