mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 04:16:52 +01: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';
 | 
						|
}
 |