ATemplateRequest.php 817 字节
<?php

namespace App\Http\Requests\Aside\Template;

use Illuminate\Foundation\Http\FormRequest;

class ATemplateRequest 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',
            'image'=>'required',
            'html'=>'required',
        ];
    }

    public function messages()
    {
        return [
            'name.required'=>'名称不能为空',
            'image.required'   =>  '图片不能为空',
            'html.required'=>'代码不能为空',
        ];
    }
}