Skip to content

Instantly share code, notes, and snippets.

@shahidkarimi
Created November 24, 2020 10:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shahidkarimi/1640faf745c45b947fc22eb4c6d397c7 to your computer and use it in GitHub Desktop.
Save shahidkarimi/1640faf745c45b947fc22eb4c6d397c7 to your computer and use it in GitHub Desktop.
Laravel Request validation rules from PUT and POST
<?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