mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
2.x
This commit is contained in:
5
resources/views/web/components/brand.blade.php
Normal file
5
resources/views/web/components/brand.blade.php
Normal file
File diff suppressed because one or more lines are too long
3
resources/views/web/components/container.blade.php
Normal file
3
resources/views/web/components/container.blade.php
Normal file
@ -0,0 +1,3 @@
|
||||
<div {{ $getExtraAttributeBag() }}>
|
||||
{!! $content !!}
|
||||
</div>
|
3
resources/views/web/components/form.blade.php
Normal file
3
resources/views/web/components/form.blade.php
Normal file
@ -0,0 +1,3 @@
|
||||
<form class="fi-form">
|
||||
{{ $this->form }}
|
||||
</form>
|
3
resources/views/web/components/infolist.blade.php
Normal file
3
resources/views/web/components/infolist.blade.php
Normal file
@ -0,0 +1,3 @@
|
||||
<div>
|
||||
{{ $this->infolist }}
|
||||
</div>
|
7
resources/views/web/components/page.blade.php
Normal file
7
resources/views/web/components/page.blade.php
Normal file
@ -0,0 +1,7 @@
|
||||
<div {{ $this->getExtraAttributesBag() }}>
|
||||
<x-filament-panels::page>
|
||||
@foreach ($this->getWidgets() as $key => $widget)
|
||||
@livewire($widget[0], $widget[1] ?? [], key(class_basename($widget[0]) . "-" . $key))
|
||||
@endforeach
|
||||
</x-filament-panels::page>
|
||||
</div>
|
17
resources/views/web/components/tags.blade.php
Normal file
17
resources/views/web/components/tags.blade.php
Normal file
@ -0,0 +1,17 @@
|
||||
<div class="inline-flex gap-1">
|
||||
@php
|
||||
if (! isset($tags) && isset($getRecord)) {
|
||||
$tags = $getRecord()->tags;
|
||||
}
|
||||
@endphp
|
||||
|
||||
@if (count($tags) === 0)
|
||||
-
|
||||
@endif
|
||||
|
||||
@foreach ($tags as $tag)
|
||||
<x-filament::badge :color="$tag->color" icon="heroicon-o-tag">
|
||||
{{ $tag->name }}
|
||||
</x-filament::badge>
|
||||
@endforeach
|
||||
</div>
|
Reference in New Issue
Block a user