laravel 5.2 yapılan Benim bütün uygulama, mükemmel iyi çalışıyor ancak ben aşağıdaki komutu ile yolların listesini almaya çalışırken:Sınıf Uygulaması Http Kontrolörler AuthController laravel yok 5.2
php artisan route:list
It
Route::group(['middleware' => ['web'], 'namespace' => 'Auth'], function() {
Route::auth();
});
sonra i ad içerisinde muhtelif eklemek çalıştı
[ReflectionException] Class App\Http\Controllers\AuthController does not exist
: bana şu hata gösteriyor Bu hatanın aşağıdaki bana gösterir:
[ReflectionException]
Class App\Http\Controllers\Auth\Auth\AuthController does not exist
Benim yolları dosyasıdır:
Route::group(['middleware' => ['web'], 'namespace'=>'Auth'], function() {
Route::auth();
});
Güncelleme: Router.php
public function auth()
{
// Authentication Routes...
$this->get('login', 'Auth\[email protected]');
$this->post('login', 'Auth\[email protected]');
$this->get('logout', 'Auth\[email protected]');
// Registration Routes...
$this->get('register', 'Auth\[email protected]');
$this->post('register', 'Auth\[email protected]');
// Password Reset Routes...
$this->get('password/reset/{token?}', 'Auth\[email protected]');
$this->post('password/email', 'Auth\[email protected]');
$this->post('password/reset', 'Auth\[email protected]');
}
içeriği yardım edin! Teşekkürler
'namespace' kaldırıldı => 'Auth', çalışıyor mu? – shuvrow
Composer dump-autoload komutunu çalıştırdınız mı? –
Dump-autoload komutu bilgi otomatik yükleyiciyi günceller. Yeni sınıf eklediğinizde ve yükleme veya güncelleştirme komutunu çalıştırmak istemediğinizde bu komut yararlıdır. –