我正在为我的Web应用程序使用laravel
和xampp
。我用路线创建了几页。不知何故,当我转到该页面时,收到了error 404
消息。
我已经检查了路径,没有错。有人请帮助我..这是我的路线
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
Route::get('/public/employer', 'Employer@index')->name('employer.show');
Route::get('/home/profile', 'ProfilesController@index')-
>name('profile.show');
Route::get('/home/profile/edit', 'ProfilesController@edit')-
>name('profile.edit');