mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 18:36:52 +01:00 
			
		
		
		
	 1900c04b71
			
		
	
	
		1900c04b71
		
			
		
	
	
	
	
		
			
			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';
 | |
| }
 |