我正在逐步制作Laravel教程,但是@extends使我看到以下错误,即未找到View [layouts.master]。我的布局文件夹位于resources / views / layouts中,而我的master.blade.php位于布局文件夹中。我的connexion.blade.php位于resources / views / connexion.blade.php中,因此使用@extends('layouts.master')时,我不会出现任何错误。我已经完美地制作了laravel教程,但这似乎很奇怪。
RESOURCES / VIEWS / CONNEXION.BLADE.PHP
@extends('layouts.master')
@section('titre', 'Connexion')
@section('body')
@stop
资源/视图/布局/MASTER.BLADE.PHP
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Site Panel - @yield('titre')</title>
</head>
<body>
@yield('body')
</body>
</html>
答案 0 :(得分:0)
问题不是未找到,而是文件权限,为什么laravel开发人员未拒绝而不是未找到权限
答案 1 :(得分:0)
按住...... Xr
这意味着您的My layouts folder is in resources/views/layouts and my master.blade.php in the layouts folder.
位于master.blade.php
内部吗?这意味着扩展功能将为resources/views/layouts/layouts
答案 2 :(得分:0)
int main()
{
char str[80], ch;
scanf("%s", str);
ch = getchar();
printf("%s\n", str);
printf("%c", ch);
return 0;
}