>백엔드 개발 >PHP 튜토리얼 >laravel 错误: View [common.header] not found. !

laravel 错误: View [common.header] not found. !

WBOY
WBOY원래의
2016-06-06 20:07:121780검색

这个我的views的目录结构:
访问index可以啊,但是访问了apply就出错了,不是继承了一个base吗?
laravel 错误: View [common.header] not found. !

laravel 错误: View [common.header] not found. !

都是@extends('pc.base')

然后:

<code> <!--start-home-->
    @include('pc.common.header')

    @section('main')
    @show
        
    @include('pc.common.footer')

    @include('pc.common.fixer')
</code>

访问apply就出错了:
laravel 错误: View [common.header] not found. !

回复内容:

这个我的views的目录结构:
访问index可以啊,但是访问了apply就出错了,不是继承了一个base吗?
laravel 错误: View [common.header] not found. !

laravel 错误: View [common.header] not found. !

都是@extends('pc.base')

然后:

<code> <!--start-home-->
    @include('pc.common.header')

    @section('main')
    @show
        
    @include('pc.common.footer')

    @include('pc.common.fixer')
</code>

访问apply就出错了:
laravel 错误: View [common.header] not found. !

查看路径对不对

common文件夹里面有header.blade.php吗?

楼上说的对,看看路径中有没有文件,或是文件的路径写的不对!

common中肯定不存在 header.blade.php文件 添加上即可

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.