*/ public function rules(): array { return [ 'search' => ['nullable', 'string', 'max:255'], 'role_id' => ['nullable', 'integer', 'exists:user_roles,id'], 'trashed' => ['nullable', Rule::in(['with', 'only'])], 'per_page' => ['nullable', 'integer', 'min:1', 'max:100'], ]; } }