Files
tbbank-new/resources/views/vendor/filament-widgets/stats-overview-widget.blade.php
2025-10-22 20:08:22 +05:00

24 lines
637 B
PHP

@php
$columns = $this->getColumns();
$pollingInterval = $this->getPollingInterval();
$heading = $this->getHeading();
$description = $this->getDescription();
$hasHeading = filled($heading);
$hasDescription = filled($description);
@endphp
<x-filament-widgets::widget
:attributes="
(new \Illuminate\View\ComponentAttributeBag)
->merge([
'wire:poll.' . $pollingInterval => $pollingInterval ? true : null,
], escape: false)
->class([
'fi-wi-stats-overview',
])
"
>
{{ $this->content }}
</x-filament-widgets::widget>