vito/resources/views/web/components/page.blade.php
2024-10-01 19:09:38 +02:00

14 lines
524 B
PHP

<div {{ $this->getExtraAttributesBag() }}>
<x-filament-panels::page>
@if (method_exists($this, "getSecondSubNavigation"))
<x-filament-panels::page.sub-navigation.tabs class="!flex" :navigation="$this->getSecondSubNavigation()" />
@endif
@foreach ($this->getWidgets() as $key => $widget)
@livewire($widget[0], $widget[1] ?? [], key(class_basename($widget[0]) . "-" . $key))
@endforeach
<x-filament-actions::modals />
</x-filament-panels::page>
</div>