UploadStoreRequest.php 732 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace App\Http\Requests\Backend\Upload;
  3. use App\Http\Requests\Request;
  4. class UploadStoreRequest 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. 'dir' => 'required',
  24. 'file' => 'required'
  25. ];
  26. }
  27. public function messages()
  28. {
  29. return [
  30. 'dir.required' => '保存目录不能为空',
  31. 'file.required' => '请选择上传的文件'
  32. ];
  33. }
  34. }