TaskScoreRequest.php 901 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace App\Http\Requests\Link;
  3. use App\Http\Requests\Request;
  4. class TaskScoreRequest 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. if (!$this->ajax()) {
  23. return [];
  24. }
  25. return [
  26. 'avatar' => 'numeric',
  27. 'custom_domain' => 'numeric',
  28. 'custom_link' => 'numeric',
  29. 'intro' => 'numeric',
  30. 'anchor' => 'numeric',
  31. 'official_website' => 'numeric',
  32. 'product_img' => 'numeric',
  33. 'note' => 'numeric',
  34. 'show_url' => 'numeric',
  35. 'total' => 'numeric',
  36. ];
  37. }
  38. }