CouponUserBagsRequest.php 411 B

1234567891011121314151617181920212223242526
  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 CouponUserBagsRequest 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. 'status' => 'required|integer'
  21. ];
  22. }
  23. }