PHP Classes

File: examples/views/layouts/mylayout.blade.php

Recommend this page to a friend!
  Classes of Jorge Castro   BladeOne   examples/views/layouts/mylayout.blade.php   Download  
File: examples/views/layouts/mylayout.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: 152 bytes
 

Contents

Class file image Download
<h1>@yield('title')</h1>
<hr>
@section('content')
    @show
<hr>
<ul>
@foreach($countries as $country)
    <li>{{$country}}</li>
@endforeach
</ul>