CollectionRequest.php 956 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class CollectionRequest extends FormRequest
  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. /*
  24. string Id = 1;
  25. string Title = 2;
  26. string Subtitle = 3;
  27. string Summary = 4;
  28. string ArticleList = 5;
  29. repeated Tag Tags = 6;
  30. string Lang = 51;
  31. string EditorId = 52;
  32. EnumPublicity Publicity = 53;
  33. */
  34. 'id' => 'required|unique:posts',
  35. 'title' => 'required|max:512',
  36. 'subtitle' => 'nullable|max:512',
  37. ];
  38. }
  39. }