16 lines
250 B
Plaintext
16 lines
250 B
Plaintext
<?php
|
|
|
|
namespace {{ namespace }};
|
|
|
|
use Filament\Forms\Components\Component;
|
|
|
|
class {{ class }} extends Component
|
|
{
|
|
protected string $view = '{{ view }}';
|
|
|
|
public static function make(): static
|
|
{
|
|
return app(static::class);
|
|
}
|
|
}
|