Русское сообщество разработки на PHP-фреймворке Laravel.
Ты не вошёл. Вход тут.
Страницы 1
Всем привет. Подскажите, пожалуйста, где находится связь миграции с моделью. Я никак не могу понять
А как вообще находить места, откуда эти ошибки происходят, а не на что они ссылаются в итоге
Всем привет. Глупый вопрос, наверное. Недавно начал изучать laravel. Кот прошелся по клавиатуре и где-то прописал пару лишних букв. Как мне теперь найти это место? В ошибке ссылается сразу в папку посредников и пишет, что такой посредник не найден. А откуда ссылается - хз(
Не нашел как тут прикреплять скрины, так что воть:
ReflectionException (-1)
Class App\Http\Middleware\EncгwwkблокнryptCookies does not exist
C:\Users\user\Desktop\OSPanel\domains\landing\vendor\laravel\framework\src\Illuminate\Container\Container.php
}
/**
* Instantiate a concrete instance of the given type.
*
* @param string $concrete
* @return mixed
*
* @throws \Illuminate\Contracts\Container\BindingResolutionException
*/
public function build($concrete)
{
// If the concrete type is actually a Closure, we will just execute it and
// hand back the results of the functions, which allows functions to be
// used as resolvers for more fine-tuned resolution of these objects.
if ($concrete instanceof Closure) {
return $concrete($this, $this->getLastParameterOverride());
}
$reflector = new ReflectionClass($concrete);
// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface or Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if (! $reflector->isInstantiable()) {
return $this->notInstantiable($concrete);
}
$this->buildStack[] = $concrete;
$constructor = $reflector->getConstructor();
// If there are no constructors, that means there are no dependencies then
// we can just resolve the instances of the objects right away, without
// resolving any other types or dependencies out of these containers.
if (is_null($constructor)) {
array_pop($this->buildStack);
return new $concrete;
}
Arguments
"Class App\Http\Middleware\EncгwwkблокнryptCookies does not exist"
Страницы 1