Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created July 15, 2021 15:10
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 cursosdesarrolloweb/1396fc36509327551ff3072035daa402 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/1396fc36509327551ff3072035daa402 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CityRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array
{
switch ($this->method()) {
case "POST": {
return [
"name" => "required|min:2|max:100|unique:cities",
];
}
case "PUT": {
return [
"name" => "required|min:2|max:100|unique:cities,name," . $this->route('city'),
];
}
}
return [];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment