DashboardReportRequest.php 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class DashboardReportRequest 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. 'workstation_id' => 'required|string',
  25. 'period' => 'required|in:7days,30days',
  26. ];
  27. }
  28. public function messages()
  29. {
  30. return [
  31. 'workstation_id.required' => '请选择站点',
  32. 'workstation_id.string' => 'workstation_id类型不对',
  33. 'period.required' => '请选择时间',
  34. 'period.in' => '请选择时间',
  35. ];
  36. }
  37. }