【发布时间】:2023-03-23 20:40:01
【问题描述】:
我刚刚安装了 Laravel 5.1,访问了我的应用程序的主页,我收到以下错误:
哎呀,好像出了点问题。
1/1
routes.php 第 16 行中的 FatalErrorException:
调用未定义的方法 Illuminate\Routing\Route::get()
在 routes.php 第 16 行
这是我的 routes.php 文件:
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the controller to call when that URI is requested.
|
*/
Route::get('/', function () {
return view('welcome');
});
【问题讨论】:
标签: php laravel laravel-5 phpstorm laravel-routing