Created
November 24, 2020 10:00
-
-
Save shahidkarimi/1640faf745c45b947fc22eb4c6d397c7 to your computer and use it in GitHub Desktop.
Laravel Request validation rules from PUT and POST
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Requests; | |
use Illuminate\Foundation\Http\FormRequest; | |
class BookRequest extends FormRequest | |
{ | |
/** | |
* Determine if the user is authorized to make this request. | |
* | |
* @return bool | |
*/ | |
public function authorize() | |
{ | |
return true; | |
} | |
/** | |
* Get the validation rules that apply to the request. | |
* | |
* @return array | |
*/ | |
public function rules() | |
{ | |
switch ($this->method()) { | |
case 'POST': { | |
return [ | |
'isbn' => "required|min:5|max:50", | |
'title' => 'required|max:100', | |
'edition' => 'numeric' | |
]; | |
} | |
case 'PUT': { | |
return [ | |
'isbn' => "min:5|max:50", | |
'title' => 'max:100', | |
'edition' => 'numeric' | |
]; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment