Answers for "laravel blade : @parent"

PHP
0

@parent laravel

@extends('layouts.master')

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

@section('sidebar')
    @parent

    <p>This is appended to the master sidebar.</p>
@stop

@section('content')
    <p>This is my body content.</p>
@stop
Posted by: Guest on August-24-2021
-1

@parent, @include, @show blade in laravel

@includeIf('view.name', ['status' => 'complete'])
Posted by: Guest on August-22-2021

Browse Popular Code Answers by Language