【发布时间】:2017-02-14 20:34:29
【问题描述】:
我收到此错误:
未找到视图 [layouts.master]。 (查看:C:\xampp5\htdocs\laravel\laravel\resources\views\page.blade.php)
这是我的 master.blade.php:
<html>
<head>
<title>@yield('title')</title>
</head>
<body>
@section('sidebar')
This is the master sidebar.
@show
<div class = "container">
@yield('content')
</div>
</body>
</html>
这是page.blade.php:
@extends('layouts.master')
@section('title', 'Page Title')
@section('sidebar')
@parent
<p>This is appended to the master sidebar.</p>
@endsection
@section('content')
<h2>{{$name}}</h2>
<p>This is my body content.</p>
@endsection
这里是路线的相关部分:
Route::get('blade', function () {
return view('page',array('name' => 'Random Name'));
});
【问题讨论】:
-
您的 master.blade 位置:view/layouts/master.blade
-
@Komal 这正是问题所在