for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Requests\Admin;
use Illuminate\Foundation\Http\FormRequest;
use App\Model\Admin\Content;
use Illuminate\Validation\Rule;
class ContentRequest 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()
// $status_in = [
// Content::STATUS_DISABLE,
// Content::STATUS_ENABLE,
// ];
return [
//'name' => 'required|max:50',
//'status' => [
// Rule::in($status_in),
//],
];
* Get custom messages for validator errors.
public function messages()
//'name.required' => '名称不能为空',
//'name.max' => '名称长度不能大于50',