aceslowman
aceslowman

Reputation: 631

Using Blade (Laravel) properly, having problems having header in it's own file

I thought I would split the header from my blade templates and have the header and footer included separately. It worked to put my header.blade.php in layouts/partials/, and then in the next template, it extends layouts.partials.header. It works, but the stylesheets and scripts are loaded after the content. How should it be organized in a way that runs fast and in the correct order?

header.blade.php

@section('header')
<!DOCTYPE html>
<html>
<head>
<title>
@section('title')
@show
</title>  
<script type="text/javascript" src="{{ asset('bower/jquery/dist/jquery.min.js') }}"></script>
<link href="{{ asset('bower/bootstrap/dist/css/bootstrap.min.css') }}" rel="stylesheet">
<script type="text/javascript" src="{{ asset('bower/bootstrap/dist/js/bootstrap.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('bower/ckeditor/ckeditor.js') }}"></script>
<link href="{{ asset('css/default.css') }}" rel="stylesheet"> 
</head>
<body>
@show

@section('footer')
    @section('scripts')
    @show
</body>
</html>
@show

master.blade.php

@extends('layouts.partials.header')
@yield('header')

    <div class="container">

        @section('topNav')
            <div class="row center-block text-center indexWrapper">
                <div class="indexNav">
                    <ul class="text-right">
                        <li><a href="{{URL::to('people')}}">People</a></li>
                        <li><a href="{{URL::to('bulletin')}}">Bulletin</a></li>
                        <li><a href="{{URL::to('current')}}">Current</a></li>
                        <li><a href="{{URL::to('finished')}}">Finished</a></li>
                    </ul>
                </div>
                <div class="indexHeading">
                    <h1 class="indexH1">
                        @section('navTitle')
                        @show
                    </h1>
                </div>
                <div class="clearfix"></div>
            </div>
        @show

        @yield('content')

        <div class="center-block login">
            @yield('login')
        </div>

    </div>

    @section('scripts')
    @show

</body>
</html>

home.blade.php

@extends('layouts.master')

    @section('title')
    @parent
        ::Home
    @stop

    @section('navTitle')
    @parent
        Mumble
    @stop

    @section('login')

            @if (Auth::check()) 
                <div class="col-md-12 panel panel-default">
                    <div class="panel-body text-center">
                        <h4>Welcome back  <em>{{ Auth::user()->name }}</em></h4>
                    </div>
                </div>

                <div class="text-center">
                    <a href="logout" class="btn btn-warning">Logout</a>
                </div>
            @else

                @if($error) 
                    <div class="alert alert-danger">
                        {{ $error }}
                    </div>
                @endif

                @if($errors->first('email'))
                    <div class="alert alert-warning">
                        {{ $errors->first('email') }}
                    </div>
                @endif
                @if($errors->first('password'))
                    <div class="alert alert-warning">
                        {{ $errors->first('password') }}
                    </div>
                @endif
                {{ Form::open(array('url' => '')) }}
                    <div class="form-group">
                        {{Form::label('email', 'Email')}}
                        {{Form::text('email', Input::old('email'),array('class'=>'form-control','placeholder'=>'enter email'))}}
                    </div>
                    <div class="form-group">
                        {{Form::label('password', 'Password')}}
                        {{Form::password('password',array('class'=>'form-control','placeholder'=>'enter password'))}}
                    </div>
                    <div class="form-group">

                        {{ Form::checkbox('remember','remember') }}  
                        <span style="margin-left:5px;">Remember Me</span>
                    </div>
                    <div class="text-center">
                        {{ Form::submit('Login',array('class'=>'btn btn-default')) }}
                    </div>
                {{ Form::close() }}
            @endif

    @stop

    @section('scripts')
        <script type="text/javascript">
            $(document).ready(function(){
                //$('.indexWrapper').addClass('homeCenter');
                //$('.indexWrapper').css( 'margin-top', '25%' );
            });
        </script>
    @stop

How modular should things be in blade? Am I breaking it into too many pieces? The scripts run slow when they are in the "footer" (defined in the header partial, I guess I should rename that), but I just want to know if there is a way to do this properly.

Upvotes: 0

Views: 3271

Answers (1)

c-griffin
c-griffin

Reputation: 3026

For my projects, i usually do something like this which works well. The amount of granularity really depends on your own requirements.

Instead of using @extends, etc.. set your views as properties of your master layout so they are rendered in your controller.

master.blade.php

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sitename | @yield('title')</title>

    {{ stylesheet() }}

</head>
<body class="{{ $authClass }}{{ isset($bodyClass) ? $bodyClass : ''  }}" role="document">

    {{ $mainNav }}

    <section id="content">

        <section id="main">
            @yield('content')
        </section>

    </section>

    <footer></footer>
    {{ script('jQuery-2-0-3.min.js') }}
    {{ script('bootstrap.js') }}
</body>
</html>

Add this to your base controller: It gets called automatically by Laravel if it exists

protected function setupLayout()
{

    $this->layout = View::make('layouts.master');

}

Controller method (nesting views)

public function index()
{

    $this->layout->content = View::make('public.interior.index')
                                ->nest('content', 'components.login')
                                ->nest('sideBar', 'components.sidebars.interiorSidebar1', ['extra' => View::make('components.sidebars.extra.extra1')]);

}

Index view (parent view.. @section defined):

@section('content')

    <div class="row-fluid col-md-7 col-sm-12 col-md-offset-1 col-sm-offset-0">
        {{ $content }}
    </div>

    <div class="row-fluid col-md-3 col-sm-12 col-md-offset-1 col-sm-offset-0 pull-right">
        {{ $sideBar }}
    </div>

@stop

Nested view (component type stuff. no @section defined)

{{ Form::open(['class' => 'form-horizontal', 'role' => 'form']) }}
    <h2>User Login</h2>
    <div class="form-group">
        {{ Form::label('email', 'Email:', ['class' => 'col-sm-2 control-label']) }}
        <div class="col-sm-10">
            {{ Form::text('email', null, ['id' => 'email','class' => 'form-control']) }}
        </div>
    </div>
    <div class="form-group">
        {{ Form::label('password', 'Password:', ['class' => 'col-sm-2 control-label']) }}
        <div class="col-sm-10">
            {{ Form::text('password', null, ['class' => 'form-control']) }}
        </div>
    </div>
    <div class="form-group">
        <div class="col-sm-offset-2 col-sm-10">
            {{ Form::submit('Login', ['class' => 'btn btn-primary']) }}
             <a href="#" class="btn btn-default">Forgot Password</a>
        </div>
    </div>

{{ Form::close() }}

Then the oh, so magical part... View composers: Create a composers.php file and include it to bind data to certain views

View::composer(['layouts.master'], function($view){

    if(Auth::check()){
        $authClass = 'logged-in';
    } else {
        $items          = MenuMaker::getPublic();

        $authClass = 'logged-out';

        $view->with('mainNav', View::make('components.mainNavPublic', ['items' => $items]))
                ->with('authClass', $authClass);
    }

});

Upvotes: 1

Related Questions