StoreUserRequest.php 683B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Http\Requests\User;
  3. use Illuminate\Foundation\Http\FormRequest;
  4. class StoreUserRequest 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. "name" => "required|string|max:50",
  24. "username" =>
  25. "required|string|regex:/^\S*$/u|min:5|max:25|unique:users,username",
  26. "role_id" => "required|numeric",
  27. ];
  28. }
  29. }