diff --git a/README.md b/README.md index 1572950..4d5a1da 100644 --- a/README.md +++ b/README.md @@ -206,6 +206,21 @@ use Coolsam\Modules\Page; ``` use the above page class instead of `use Filament/Pages/Page;` into your page class file to protect your pages. +```php +use Coolsam\Modules\TableWidget; +``` +use the above page class instead of `use Filament/Pages/TableWidget;` into your widget class file to protect your TableWidget. + +```php +use Coolsam\Modules\ChartWidget; +``` +use the above page class instead of `use Filament/Pages/ChartWidget;` into your widget class file to protect your ChartWidget. + +```php +use Coolsam\Modules\StatsOverviewWidget; +``` +use the above page class instead of `use Filament/Pages/StatsOverviewWidget;` into your widget class file to protect your StatsOverviewWidget. + ```php use CanAccessTrait; ``` diff --git a/src/ChartWidget.php b/src/ChartWidget.php new file mode 100644 index 0000000..7f070b6 --- /dev/null +++ b/src/ChartWidget.php @@ -0,0 +1,16 @@ +