PHP Classes

File: examples/views/Shared/newlayout.blade.php

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   examples/views/Shared/newlayout.blade.php   Download  
File: examples/views/Shared/newlayout.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: 3.44.1 if the view file is not found then it shows the full path.
Date: 3 years ago
Size: 295 bytes
 

Contents

Class file image Download
<html>
<head>
</head>
<body>
<h1>Test</h1>
This example shows the use of @@extends, and @@yield<br><br>
    @yield('header','<br>header content is missing<br>')
    @yield('content')
    @yield('footer')
   
    @yield('footermissing',$this->runChild("Test.footermising"))
   

</body>
</html>