17 lines
276 B
Plaintext
17 lines
276 B
Plaintext
<?php
|
|
|
|
namespace {{ namespace }};
|
|
|
|
use Filament\Widgets\StatsOverviewWidget as BaseWidget;
|
|
use Filament\Widgets\StatsOverviewWidget\Stat;
|
|
|
|
class {{ class }} extends BaseWidget
|
|
{
|
|
protected function getStats(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|