[增添]添加了datasource的setting数据库以及默认值

This commit is contained in:
makotocc0107
2024-08-27 09:57:44 +08:00
parent d111dfaea4
commit 72eb990970
10955 changed files with 978898 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
@php
$columnSpan = $this->getColumnSpan();
if (! is_array($columnSpan)) {
$columnSpan = [
'default' => $columnSpan,
];
}
$columnStart = $this->getColumnStart();
if (! is_array($columnStart)) {
$columnStart = [
'default' => $columnStart,
];
}
@endphp
<x-filament::grid.column
:default="$columnSpan['default'] ?? 1"
:sm="$columnSpan['sm'] ?? null"
:md="$columnSpan['md'] ?? null"
:lg="$columnSpan['lg'] ?? null"
:xl="$columnSpan['xl'] ?? null"
:twoXl="$columnSpan['2xl'] ?? null"
:defaultStart="$columnStart['default'] ?? null"
:smStart="$columnStart['sm'] ?? null"
:mdStart="$columnStart['md'] ?? null"
:lgStart="$columnStart['lg'] ?? null"
:xlStart="$columnStart['xl'] ?? null"
:twoXlStart="$columnStart['2xl'] ?? null"
:attributes="\Filament\Support\prepare_inherited_attributes($attributes)->class('fi-wi-widget')"
>
{{ $slot }}
</x-filament::grid.column>