mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 23:12:35 +00:00
2.x - firewall/metrics/services/cronjobs
This commit is contained in:
5
resources/views/web/components/app-version.blade.php
Normal file
5
resources/views/web/components/app-version.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
<div class="p-6 text-sm">
|
||||
<a href="https://github.com/vitodeploy/vito/releases/tag/{{ config("app.version") }}" target="_blank">
|
||||
V{{ config("app.version") }}
|
||||
</a>
|
||||
</div>
|
@ -1,3 +1,7 @@
|
||||
<div {{ $getExtraAttributeBag() }}>
|
||||
<div
|
||||
@if (isset($getExtraAttributeBag))
|
||||
{{ $getExtraAttributeBag() }}
|
||||
@endif
|
||||
>
|
||||
{!! $content !!}
|
||||
</div>
|
||||
|
@ -1,3 +1,6 @@
|
||||
<form>
|
||||
{{ $this->form }}
|
||||
</form>
|
||||
<div>
|
||||
<form wire:submit="submit">
|
||||
{{ $this->form }}
|
||||
</form>
|
||||
<x-filament-actions::modals />
|
||||
</div>
|
||||
|
@ -1,3 +1,4 @@
|
||||
<div>
|
||||
{{ $this->infolist }}
|
||||
<x-filament-actions::modals />
|
||||
</div>
|
||||
|
@ -1,11 +1,13 @@
|
||||
<div {{ $this->getExtraAttributesBag() }}>
|
||||
<x-filament-panels::page>
|
||||
@if (method_exists($this, "getSecondSubNavigation"))
|
||||
<x-filament-panels::page.sub-navigation.tabs :navigation="$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>
|
||||
|
Reference in New Issue
Block a user