Custom Page Title

Custom page description

You may customise the document title, page title and page description by passing a named array of data to the @extends blade directive.

@extends('apex::_demo.pageMaster', [
    'documentTitle' => 'Custom doc title',
    'pageTitle' => 'Custom page title',
    'pageDescription' => 'Custom page description',
])
@extends('apex::_demo.pageMaster', [
    'documentTitle' => 'Custom doc title',
    'pageTitle' => 'Custom page title: '.$model->property,
    'pageDescription' => 'Custom page description',
])

You may also customise the breadcrumbs by passing an array to the breadcrumbs key.

The key should be the title of the breadcrumb and the value should be the link value. If you wish for a breadcrumb to not have a link, set the key to be null.

@extends('apex::_demo.pageMaster', [
    'documentTitle' => 'Custom doc title',
    'pageTitle' => 'Custom page title',
    'pageDescription' => 'Custom page description',
    'breadcrumbs' => [
        'Home' => '/',
        'Directory' => route('route.name'),
        'Page Title' => null,
    ],
])