我是laravel的新人。但是,我创建了刀片模板并与我的离线索引网页集成。它由signin.html和signout.html组成。以下是管理我的文件的结构方式:
-views
--account
---signin.blade.php
---signup.blade.php
--includes
---head.blade.php
---footer.blade.php
--layouts
---master.blade.php
--home.blade.php
Home.blade.php
@extends('layouts.master');
Master.blade.php
<!DOCTYPE html>
<html>
<head>
@include('includes.head');
</head>
<body class="bg-info">
<!-- @include('includes.navigation'); -->
<!-- @extends('account.signin'); -->
<!-- @yield('content') -->
<!-- @yield('content') -->
@include('includes.footer');
</body>
</html>
以下两个文件将在页面中输出登录表单。我不知道他们是如何进入的。我没有包括任何东西。我的公共文件夹:
--assets
---css
---fonts
---images
---js
--index.php
--.htacess
的index.php
require __DIR__.'/../bootstrap/autoload.php';
$app = require_once __DIR__.'/../bootstrap/start.php';
$app->run();
$app->shutdown();
的.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
路线
Route::get('/', array (
'as' => 'home',
'uses' => 'HomeController@home'
));
家庭控制器
public function home() {
return View::make('home');
}
现在,如果我打开我的本地主机,查看[includes.master]找不到。也许我的存储文件夹仍然包含模板代码,但我试图删除,它会不断生成新的。
另一个问题是当我将@extends('includes.master')添加到顶部的signin.blade.php或singup.blade.php时。 localhost和localhost / account / signin或localhost / account / register将内部服务器错误:500 。
答案 0 :(得分:1)
好吧,我告诉你一件事。有什么需要在外部文件夹中包含标题?请遵循这一点,您的主布局应如下所示:
<!DOCTYPE html>
<html>
<head>
//put your codes here , not the include function
</head>
<body class="bg-info">
@include('includes.navigation');
@extends('account.signin');
@yield('content')
@include('includes.footer');
</body>
</html>
home.blade.php
应该是这样的:
@extends(layouts.master)
@section('content')
<p> Hello, this works </p>
@stop
现在,如果您需要任何进一步的帮助,请告诉我。
答案 1 :(得分:0)
检查views
文件夹权限。在我的情况下有一个问题。
对于此文件夹,权限内的所有文件都应为 755 。
答案 2 :(得分:0)
有同样的问题,认为这与视图目录的刀片缓存有关。我通过将@extends(example.master)更改为另一个模板,然后返回到想要的路径来修复它。工作没有做任何其他事情,但一如既往地先尝试php artisan view:clear
。
Greets,Pat