【发布时间】:2017-05-09 21:47:30
【问题描述】:
我将 .php 文件更改为 .blade.php 时出错。 在我更改之前,它得到了这个错误。
Route::get('hello','HelloController@index');
HelloController
public function index()
{
$data = array(
'name' => 'Rakesh',
'email' => 'sharmarakesh395@gmail.com');
return View::make('hello.index')->with('data', $data);
}
/public/hello/index.blade.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Laravel 5.3 - Home page</title>
</head>
<body>
<h1>Welcome Hello index </h1>
<h1>{!!$data!!}</h1>
<h1>{!!$data['email']!!}</h1>
</body>
</html>
错误
The requested resource /hello was not found on this server.
【问题讨论】: