23 lines
340 B
Plaintext
23 lines
340 B
Plaintext
<?php
|
|
|
|
namespace {{ namespace }};
|
|
|
|
use Filament\Widgets\ChartWidget;
|
|
|
|
class {{ class }} extends ChartWidget
|
|
{
|
|
protected static ?string $heading = 'Chart';
|
|
|
|
protected function getData(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
protected function getType(): string
|
|
{
|
|
return '{{ type }}';
|
|
}
|
|
}
|