1
異常類應用\ 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();
LOL !我認爲你的意思是'致命錯誤'! –