auditionadmin/resources/views/components/layout/page-header.blade.php

14 lines
427 B
PHP

@props(['title_bar_right' => false])
<header class="bg-white shadow-sm">
<div class="mx-auto max-w-7xl flex justify-between align-middle px-4 py-4 sm:px-6 lg:px-8">
<div>
<h1 class="text-lg font-semibold leading-6 text-gray-900">{{ $slot }}</h1>
</div>
<div>
@if($title_bar_right)
{{ $title_bar_right }}
@endif
</div>
</div>
</header>