Pull this package in through Composer.
{
"require": {
"radiula/title": "~0.5"
}
Add the following to you config/app.php
'providers' => [
'...',
'Radiula\Title\TitleServiceProvider'
];
'aliases' => [
'...',
'Title' => 'Radiula\Title\Facades\Title',
];
Title::siteName('Acme Site');
Title::segment('Foo', 'Bar');
Title::make();
Title::layout('%s - %s');
Title::segments();
Title::setSegments(['Foo', 'Bar']);
Title::last();
Running the siteName
and segment
methods with the above properties (and the default layout), would cause make
to output the following
Foo | Bar | Acme Site