CardRidingRequest.php 892 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class CardRidingRequest 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. 'name'=>'required',
  25. 'is_limit_times'=>'required',
  26. 'effective_days'=>'required|integer',
  27. 'times'=>'',
  28. 'price'=>'required',
  29. 'discount'=>'',
  30. 'day_can_ridding_times'=>'',
  31. 'status'=>'required',
  32. 'is_discount'=>'required',
  33. 'deduction_money'=>'required',
  34. 'areas'=>'sometimes',
  35. ];
  36. }
  37. }