I have layouts.app.blade.php where I have my and
tags and also the
.
In the
If this is your master page title below
App Name - @yield('title')
@section('sidebar')
This is the master sidebar.
@show
@yield('content')
then your page title can be changed in your blade page like below
@extends('layouts.master')
@section('title', 'Page Title')
@section('sidebar')
@parent
This is appended to the master sidebar.
@endsection
@section('content')
This is my body content.
@endsection
More information can be found here Laravel Docs