Files

38 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2025-09-21 18:07:30 +08:00
<x-filament-widgets::widget class="fi-ta-ctn fi-ta-ctn-with-header">
2026-01-31 00:08:23 +07:00
<div class="fi-ta-main">
<!-- Header Section -->
<div class="fi-ta-header-ctn">
<div class="fi-ta-header">
<div>
<h2 class="fi-ta-header-heading">
{{$header}}
</h2>
</div>
</div>
</div>
<!-- Table Section -->
<div class="fi-ta-content-ctn fi-fixed-positioning-context">
<table class="fi-ta-table">
<tbody>
@foreach(array_chunk($data, 2) as $chunk)
<tr>
@foreach($chunk as $item)
<th class="fi-ta-header-cell fi-ta-header-cell-id">
{{$item['text']}}
</th>
<td class="fi-ta-cell fi-table-cell-id"
@if($loop->count == 1)
colspan="3"
@endif
>
<div class="{{$item['class'] ?? ''}}">{{$item['value']}}</div>
</td>
@endforeach
</tr>
@endforeach
</tbody>
</table>
2022-06-28 13:33:18 +08:00
</div>
2025-09-21 18:07:30 +08:00
</div>
2024-12-29 22:16:41 +08:00
</x-filament-widgets::widget>