mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-22 00:01:09 +02:00
17 lines
375 B
PHP
17 lines
375 B
PHP
<?php
|
|
|
|
namespace App\Filament\Admin\Widgets;
|
|
|
|
use Filament\Forms\Concerns\InteractsWithForms;
|
|
use Filament\Forms\Contracts\HasForms;
|
|
use Filament\Widgets\Widget;
|
|
|
|
abstract class FormWidget extends Widget implements HasForms
|
|
{
|
|
use InteractsWithForms;
|
|
|
|
protected static bool $isLazy = false;
|
|
|
|
protected static string $view = 'filament.admin.widgets.form-widget';
|
|
}
|