Files
tbbank-new/resources/views/vendor/filament/components/loading-section.blade.php
2025-10-22 20:08:22 +05:00

15 lines
342 B
PHP

@props([
'columnSpan' => [],
'columnStart' => [],
'height' => null,
])
<div
{{
($attributes ?? new \Illuminate\View\ComponentAttributeBag)
->gridColumn($columnSpan, $columnStart)
->class(['fi-section fi-loading-section'])
->style(['height: ' . ($height ?? '8rem')])
}}
></div>