<?php return $this->models[Str::studly(Str::plural($context))];
}
$matches = array_filter(array_keys($this->models), fn ($key) => Str::endsWith(Str::afterLast(Str::afterLast($key, '\\'), '/'), [Str::studly($context), Str::studly(Str::plural($context))]));
if (count($matches) === 1) {
return $this->models[current($matches)];