Laravel 5.5 - Validation Data Return - New Feature
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
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel 5.4 New Feature - Add Eloquent WhereKey Method Example
- Laravel 5.3 - Form Input Validation rules example with demo
- Laravel $loop Variable New Feature Example
- Laravel File Upload with Validation Example
- Laravel Client Side Validation using Parsley.js Example
- Laravel Create Custom Validation Rule Example