OrderPayShowRequest.php 499 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Mead
  5. * Date: 2019/8/5
  6. * Time: 3:22 PM
  7. */
  8. namespace App\Http\Requests;
  9. use App\Validators\Rules;
  10. class OrderPayShowRequest extends FormRequest
  11. {
  12. /**
  13. * Get the validation rules that apply to the request.
  14. *
  15. * @return array
  16. */
  17. public function rules()
  18. {
  19. return [
  20. 'order_no' => Rules::no,
  21. 'coupon_user_bags_id' => 'sometimes|integer',
  22. 'is_first' => 'sometimes'
  23. ];
  24. }
  25. }