PHP Classes

File: resources/views/layouts/master.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Store My Notes Laravel 5   resources/views/layouts/master.blade.php   Download  
File: resources/views/layouts/master.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Store My Notes Laravel 5
Store and share user notes
Author: By
Last change:
Date: 11 hours ago
Size: 288 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html>
<head>
    @include ('partials.head')
</head>
<body>

    @include('partials.nav')

    <div class="container">
        <div class="page">
            @yield('content')
        </div>
       
    </div>
    @include('partials.footer_bottom')
    @include('partials.scripts')
    @yield('scripts')
</body>
</html>