PHP Classes

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

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

Contents

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

@extends('Test.layout')

@section('title', 'Page Title')

@section('sidebar')
    @parent
    <p>This is appended to the master sidebar (from child).</p>
    @parent
    @parent
@endsection

@section('content')
    <p>This is my body content (from child).</p>
@endsection