Sami
0
Q:

laravel dynamic page title

<!-- Stored in resources/views/layouts/master.blade.php -->

<html>
    <head>
        <title>App Name | @yield('mytitle')</title>
    </head>
    <body>
        <div class="container">
            @yield('content')
        </div>
    </body>
</html>
  
<!-- Extending the master.blade.php into another view file. Eg. About Us Page -->

@extends('layouts.master')

@section('mytitle', 'About Us')

@section('content')
    <h1>"Let's Go"</h1>
@endsection
3
<html>
<head>
    <title>App Name - @yield('title')</title>
</head>
<body>
    @section('sidebar')
        This is the master sidebar.
    @show

    <div class="container">
        @yield('content')
    </div>
</body>
  
<!-- Then you can extend pages using code below as guide  -->
  
  @extends('layouts.master')

  @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>
  @endsection
0

New to Communities?

Join the community