Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 20, 2019 17:40
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 parzibyte/5c780666dd6ba245904fb371053a9030 to your computer and use it in GitHub Desktop.
Save parzibyte/5c780666dd6ba245904fb371053a9030 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class GuardarArea 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 [
"nombre" => "required|max:255"
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment