Blade sections
You can easily use Blade sections to customize your pages. There are two ways to use blade sections:
When you override a view and create a new blade file.
Modifying Uccello layout located at
resources/views/layouts/uccello.blade.php.
Common sections
Here the list of blade sections common to all uccello pages:
Page title
// <title>@yield('title', config('app.name', 'Uccello'))</title>
@section('title', 'My custom page title')Page name
// <meta name="page" content="@yield('page')">
@section('page', 'index')Page meta
Favicon
Base href
Logo
CSS files
CSS classes
Pre-content
Content container
Content CSS classes
Content
Post-content
Translations
JavaScript files
Last updated
Was this helpful?