Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created August 5, 2021 09:01
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/ffaba2859ab91613effa6c6f7ebd96e2 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/ffaba2859ab91613effa6c6f7ebd96e2 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class PostRequest 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()
{
return [
"title" => "unique:posts|min:2|max:120|string",
"description" => "nullable|string|max:500",
"tags.*" => "string|max:30", // cada tag debe ser un string y no puede tener una longitud mayor de 30
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment