ihave a route to get artists initial letter.
this is my route
Route::get(\'/artists/{letter}\', \'HomeController@showArtist\')->where(\'letter\', \'[
If this is your master page title below
App Name - @yield('title')
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