Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel title description dynamic

<!-- resources/views/child.blade.php -->
 
@extends('layouts.app')
 
@section('title', 'Page Title')
 
@section('sidebar')
    @parent
 
    <p>This is appended to the master sidebar.</p>
@endsection
 
@section('content')
    <p>This is my body content.</p>
@endsectio
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #laravel #title #description #dynamic
ADD COMMENT
Topic
Name
2+4 =