PHP Classes

File: examples/views/Test2/stack.blade.php

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   ???   Download  
File: examples/views/Test2/???
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: BladeOne
Standalone template engine that compiles into PHP
Author: By
Last change:
Date: 1 month ago
Size: 596 bytes
 

Contents

Class file image Download
---stack style:---<br>
@stack("style")
<br>---stack example1:---<br>
@stack("example1")
<br>---stack example*:---<br>
@stack("example*")
<br>---stack examplenotexist:---<br>
@stack("examplenotexist","notfound")
@push("example1")
alpha
@endpush
@push("example1")
beta
@endpush
@push("example1","gamma")

@foreach($products as $product)
    <div class="blue">{{$product['name']}} ${{$product['price']}}</div>
    @pushonce("style")
        <style>
            .blue {
                background-color: blue;
                color:white;
            }
        </style>
    @endpushonce
@endforeach