the browser-facing portion of osu!
at master 20 lines 567 B view raw
1{{-- 2 Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 3 See the LICENCE file in the repository root for full licence text. 4--}} 5@php 6 $links = [[ 7 'url' => route('admin.root'), 8 'title' => osu_trans('layout.header.admin.root'), 9 ]]; 10 11 if (isset($title)) { 12 $links[] = compact('title'); 13 } else { 14 $title = osu_trans('layout.header.admin.root'); 15 } 16@endphp 17@include('layout._page_header_v4', ['params' => [ 18 'links' => $links, 19 'linksBreadcrumb' => true, 20]])