This commit is contained in:
Saeed Vaziry
2024-09-27 20:36:03 +02:00
committed by GitHub
parent b62c40c97d
commit f6bc04763b
122 changed files with 6609 additions and 807 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,3 @@
<div {{ $getExtraAttributeBag() }}>
{!! $content !!}
</div>

View File

@ -0,0 +1,3 @@
<form class="fi-form">
{{ $this->form }}
</form>

View File

@ -0,0 +1,3 @@
<div>
{{ $this->infolist }}
</div>

View 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>

View 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>