我按照Laravel.com上的升级指南进行操作。完成之后,我完成了作曲家更新,我遇到了这个错误。有人知道如何解决这个问题吗?
感谢您帮助我
cd sample
npm init // This will ask a bunch of questions. you can mostly just hit "enter". it will create the package.json file for you
npm i express --save
routeserviceprovider.php
FatalThrowableError in RouteServiceProvider.php line 73:
Class 'App\Providers\Route' not found
答案 0 :(得分:2)
错误显示在错误的命名空间中搜索Route类。我确定你没有class \ App \ Providers \ Route。您需要在您的提供程序中添加Route类的正确路径:
use Illuminate\Support\Facades\Route;