【发布时间】:2017-08-01 15:10:45
【问题描述】:
web.php 文件
这是我使用 laravel 5.4 的 web.php 文件
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', [
'uses' =>'ProductController@getIndex()',
'as' =>'product.index'
]);
ProductController.php
这是我使用 laravel5.4 的控制器文件
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ProductController extends Controller
{
//
public function getIndex(){
return view('shop.index');
}
}
如何摆脱这个错误请帮助我。
这有什么问题?
【问题讨论】:
标签: laravel laravel-5 laravel-routing laravel-5.4