2017-01-24 96 views
1

致命錯誤致命錯誤異常類應用 HTTP 控制器控制器沒有發現

異常類應用\ HTTP \控制器\控制器沒有發現

而我運行命令PHP人員路線:列表和其他所有命令都正常工作。 我已將我的項目命名爲「Socialite」,並將controller.php的命名空間命名爲「namespace Socialite \ Http \ Controllers;」。我也自動拋棄了我的項目。 routes/web.php中沒有任何語法錯誤。

<?php 

/* 
|-------------------------------------------------------------------------- 
| Web Routes 
|-------------------------------------------------------------------------- 
| 
| This file is where you may define all of the routes that are handled 
| by your application. Just tell Laravel the URIs it should respond 
| to using a Closure or controller method. Build something great! 
| 
*/ 

Route::get('/', '[email protected]')->name('start'); 



Route::get('/signup','[email protected]')->name('auth.signup'); 
Route::post('/signup','[email protected]')->name('auth.signup'); 

Route::get('/signin','[email protected]')->name('auth.signin'); 
Route::post('/signin','[email protected]')->name('auth.signin'); 
Auth::routes(); 
+0

LOL !我認爲你的意思是'致命錯誤'! –

回答

0

你應該使用此命令重命名一個應用程序:

php artisan app:name Socialite 

或更改你的應用程序手動使用,例如用於Controller.php命名空間的所有類的命名空間將是:

namespace Socialite\Http\Controllers; 
+0

我已經做了,但沒有解決 –