Files
data-collection-terminal/vendor/filament/widgets/stubs/ChartWidget.stub

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 }}';
}
}