私はlaravelを使用する初心者のphp開発者です。
私は自分のroutes.phpをそのように定義しています
Route::get('/', function()
{
return View::make('Home.index');
});
そして私のindex.blade.phpなど
@extends('layouts.master')
@section('content')
<h2>All Users</h2>
<p> {{HTML::link('Home.createuser', 'Add a New User')}} </p>
@stop
私のindex.blade.phpから、そのように定義されているcreateuser.blade.phpという3番目のファイルへのリンクがあります
@extends('layouts.master')
@section('content')
<div>
<legend> Add a User</legend>
</div>
@stop
index.blade.php と createuser.blade.php の両方のファイルが同じフォルダーにあります。
ただし、インデックス ページから createuser ページにアクセスしようとするたびに、恐ろしい NotFoundException エラーが発生し続けます。
このビデオをフォローしようとしています。
誰か助けてください
ありがとう