This commit is contained in:
2025-10-22 20:08:22 +05:00
commit 736e3bef18
2573 changed files with 120385 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,3 @@
<div>
{{-- Use $getChildSchema() to render the child schema() of this component. --}}
</div>

View File

@@ -0,0 +1,8 @@
<x-dynamic-component
:component="$getEntryWrapperView()"
:entry="$entry"
>
<div {{ $getExtraAttributeBag() }}>
{{ $getState() }}
</div>
</x-dynamic-component>

View File

@@ -0,0 +1,11 @@
<x-dynamic-component
:component="$getFieldWrapperView()"
:field="$field"
>
<div
x-data="{ state: $wire.$entangle(@js($getStatePath())) }"
{{ $getExtraAttributeBag() }}
>
{{-- Interact with the `state` property in Alpine.js --}}
</div>
</x-dynamic-component>

View File

@@ -0,0 +1,11 @@
<div>
<form wire:submit="{{ submitAction }}">
{{ $this->form }}
<button type="submit">
Submit
</button>
</form>
<x-filament-actions::modals />
</div>

View File

@@ -0,0 +1,5 @@
<div>
{{ $this->content }}
<x-filament-actions::modals />
</div>

View File

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

View File

@@ -0,0 +1,3 @@
<x-filament-panels::page>
{{-- Page content --}}
</x-filament-panels::page>

View File

@@ -0,0 +1,3 @@
<div>
{{-- Custom block preview --}}
</div>

View File

@@ -0,0 +1,3 @@
<div>
{{-- Custom block --}}
</div>

View File

@@ -0,0 +1,4 @@
@import '../../../../vendor/filament/filament/resources/css/theme.css';
@source '../../../../app/Filament/{{ classDirectory }}**/*';
@source '../../../../resources/views/filament/{{ viewDirectory }}**/*';

View File

@@ -0,0 +1,5 @@
<x-filament-widgets::widget>
<x-filament::section>
{{-- Widget content --}}
</x-filament::section>
</x-filament-widgets::widget>