40parent laravel

Solutions on MaxInterview for 40parent laravel by the best coders in the world

showing results for - " 40parent laravel"
Laura
25 Nov 2018
1Hello, {{ $name }}.
2
3The current UNIX timestamp is {{ time() }}.
Ainsley
14 Jan 2017
1@extends('layouts.master')
2
3@section('title', 'Page Title')
4
5@section('sidebar')
6    @parent
7
8    <p>This is appended to the master sidebar.</p>
9@stop
10
11@section('content')
12    <p>This is my body content.</p>
13@stop
Hannah
27 Jul 2017
1@yield('section', 'Default Content')
Alex
07 Mar 2020
1<!-- Stored in resources/views/layouts/master.blade.php -->
2
3<html>
4    <head>
5        <title>App Name - @yield('title')</title>
6    </head>
7    <body>
8        @section('sidebar')
9            This is the master sidebar.
10        @show
11
12        <div class="container">
13            @yield('content')
14        </div>
15    </body>
16</html>