Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created December 6, 2019 20:59
Show Gist options
  • Save NandoKstroNet/0e4c81ec45b8407debc883de376cbacf to your computer and use it in GitHub Desktop.
Save NandoKstroNet/0e4c81ec45b8407debc883de376cbacf to your computer and use it in GitHub Desktop.
Category Request curso Laravel 6 Criando um Marketplace em http://codeexperts.com.br
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CategoryRequest 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 [
'name' => 'required'
];
}
public function messages()
{
return [
'required' => 'Este campo é obrigatório!'
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment