AppUserUpdateRequest.php 718 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Http\Requests;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class AppUserUpdateRequest 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. $reture = [
  23. //'app_id' => 'required|regex:/^[0-9]{1,10}$/|',
  24. 'app_username' => 'required|min:2|max:14|unique:ag_app_user,app_username,'.$this->get('id').',id',
  25. //'password' => 'required',
  26. ];
  27. return $reture;
  28. }
  29. }