PHP Classes

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

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   examples/views/Shared/display.blade.php   Download  
File: examples/views/Shared/display.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:
Date: 3 years ago
Size: 461 bytes
 

Contents

Class file image Download
<div style="background-color: lightblue">
    <br>
    Global variable :{{$g1}} {{$g2}}<br>
    Scope variable :{{$s1 | "s1 is not defined"}} {{$s2 | "s2 is not defined"}}<br>
    @@include('shared.subdisplay',['s2'=>'defined inside display'])<br>
    @include('shared.subdisplay',['s2'=>'defined inside display'])<br>
    Global variable :{{$g1}} {{$g2}}<br>
    Scope variable :{{$s1 | "s1 is not defined"}} {{$s2 | "s2 is not defined"}}<br>


    <br>
</div>