Files
biiproject-kit-v1/resources/views/vendor/filament-panels/components/header/index.blade.php
T

55 lines
1.5 KiB
PHP

@props([
'actions' => [],
'actionsAlignment' => null,
'breadcrumbs' => [],
'heading' => null,
'subheading' => null,
])
<header
{{
$attributes->class([
'fi-header',
'fi-header-has-breadcrumbs' => $breadcrumbs,
])
}}
>
<div>
@if ($breadcrumbs)
<x-filament::breadcrumbs :breadcrumbs="$breadcrumbs" />
@endif
@if (filled($heading))
<h1 class="fi-header-heading">
{{ $heading }}
</h1>
@endif
@if (filled($subheading))
<p class="fi-header-subheading">
{{ $subheading }}
</p>
@endif
</div>
@php
$beforeActions = \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::PAGE_HEADER_ACTIONS_BEFORE, scopes: $this->getRenderHookScopes());
$afterActions = \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::PAGE_HEADER_ACTIONS_AFTER, scopes: $this->getRenderHookScopes());
@endphp
@if (filled($beforeActions) || $actions || filled($afterActions))
<div class="fi-header-actions-ctn">
{{ $beforeActions }}
@if ($actions)
<x-filament::actions
:actions="$actions"
:alignment="$actionsAlignment"
/>
@endif
{{ $afterActions }}
</div>
@endif
</header>