2017-03-27 16 views
2

私は最近、ヘッダーの内容がすべてのページで同じだったので、拡張ヘッダーを使用するようにページを変更しました。私がこれをしたら、私のフッタは完全に機能しなくなりました。私は今、試してみて、それだけで通常のコンテンツとして表示さLaravelから設定を取得するときは、以下を参照してくださいすることができます:Laravel:設定を表示するには?

をどのようにフッターが表示されます。

{{ Config::get('frontend.site_name') }} 2017/Powered by the amazing {{ config('frontend.powered_by') }}. 
Copyright © 2017 {{ Config::get('frontend.website_author') }}, and others who have supported this project. All rights reserved. 

ヘッダー(それが拡張ビュー):

<!DOCTYPE html> 
<html lang="{{ config('app.locale') }}"> 
<head> 
    <title>{{ config('frontend.site_name') }} - @yield('title')</title> 
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> 
    <link href="{{ config('frontend.assets_path') }}/css/override.css" rel="stylesheet" type="text/css"> 
</head> 
<body id="home"> 
    <div class="container"> 
     <br> 
     @yield('body') 
    </div> 
    @include('frontend.footer') 
</body> 
</html> 

実際のビュー:

@extends('frontend.header') 
    @section('title') 
     Home 
    @endsection 
    @section('body') 
    Write something here soon 
    @endsection 

Frontend.footer:

<div class="container"> 
     <div class="col-md-12" style="margin-bottom:2%;"> 
      {{ Config::get('frontend.site_name') }} <?php echo date("Y"); ?>/Powered by the amazing {{ config('frontend.powered_by') }}.<br> 
      Copyright © 2017 {{ Config::get('frontend.website_author') }}, and others who have supported this project. All rights reserved. 
     </div> 
    </div> 
    <script src="https://use.fontawesome.com/905fc4df74.js"></script> 
    <script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> 
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> 
</body> 
</html> 

答えて

1

ファイル名は.blade部分があることを確認してください:

resources/views/frontend/footer.blade.php 
関連する問題