Laravel PackageManifest.php: Undefined index: name Hatası
Aşağıdaki dizindeki dosyayı bulun,
vendor/laravel/framework/src/Illuminate/Foundation/PackageManifest.php
daha sonra aşağıdaki kodu arayın
$packages = json_decode($this->files->get($path), true);
kodu bulduktan sonra aşağıda vereceğim kod ile değiştirin.
$installed = json_decode($this->files->get($path), true);
$packages = $installed['packages'] ?? $installed;