Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created July 14, 2021 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/50f724fac74d8173f78284e0ec27b62c to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/50f724fac74d8173f78284e0ec27b62c to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use App\Enums\UserType;
use BenSampo\Enum\Rules\EnumValue;
use Illuminate\Foundation\Http\FormRequest;
class UserRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool {
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules(): array {
return [
"role" => ['required', new EnumValue(UserType::class, false)], // false para no tener en cuenta el tipo
// resto de validaciones
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment