我正在尝试在laravel中创建一个刀片轮廓。我在“xampp \ htdocs \ laravel5-learning \ resources \ views \ layouts”中创建了“master.blade.php”,其中包含:
<!DOCTYPE html>
<html>
<head>
<title>@yield('title')</title>
</head>
<body>
<div class="container">
@yield('content')
</div>
</body>
</html>
然后我在“xampp \ htdocs \ laravel5-learning \ resources \ views”方向上有一个文件“welcome.blade.php”。它包含:
@extends('layouts.master')
@section('title')
Welcome!
@endsection
@section('content')
This is the content!
@endsection
然而,这不起作用。我还有一个测试php文件,这在运行localhost \ laravel5-learning \ resources \ views \ test.php
时有效我使用xampp运行apache和sql server。
有人有想法吗?我觉得我错过了使用Laravel的重要一步。我安装了xampp,然后使用composer和htdocs文件夹中的行安装了Laravel: 作曲家创作项目laravel / laravel laravel5-learning
如果我转到http://localhost/laravel5-learning/resources/views/welcome.blade.php,实际代码会显示: @extends('layouts.master')@section('title')欢迎! @endsection @section('content')这是内容! @endsection
有人有想法吗?
答案 0 :(得分:0)
找到解决方案。我正在运行实际的代码,但我应该在公共文件夹中运行index.html文件。
我猜是一个非常大的菜鸟错误。