UpdateRequest.php 806 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace App\Http\Requests\Backend\Article;
  3. use App\Http\Requests\Request;
  4. class UpdateRequest extends Request
  5. {
  6. /**
  7. * Determine if the user is authorized to make this request.
  8. *
  9. * @return bool
  10. */
  11. public function authorize()
  12. {
  13. return true;
  14. }
  15. /**
  16. * Get the validation rules that apply to the request.
  17. *
  18. * @return array
  19. */
  20. public function rules()
  21. {
  22. return [
  23. 'title' => 'required',
  24. 'cate_id' => 'required|numeric',
  25. ];
  26. }
  27. public function messages()
  28. {
  29. return [
  30. 'title.required' => '请输入文章标题',
  31. 'cate_id.required' => '请选择文章分类',
  32. 'cate_id.numeric' => '请选择合法的分类'
  33. ];
  34. }
  35. }