mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-09 13:29:10 +02:00

Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh>
17 lines
368 B
PHP
17 lines
368 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 string $view = 'filament.admin.widgets.form-widget';
|
|
}
|