PHP Classes

File: examples/views/Test/layout.blade.php

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   examples/views/Test/layout.blade.php   Download  
File: examples/views/Test/layout.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: BladeOne
Standalone template engine that compiles into PHP
Author: By
Last change: Update of examples/views/Test/layout.blade.php
Date: 3 years ago
Size: 296 bytes
 

Contents

Class file image Download
<!-- Stored in resources/views/layouts/app.blade.php -->

<html>
<head>
    <title>App Name - @yield('title')</title>
</head>
<body>
@section('sidebar')
*********This is the master sidebar.(from layout) *************<br>
@show

<div class="container">
    @yield('content')
</div>
</body>
</html>