Files
data-collection-terminal/vendor/filament/forms/stubs/LayoutComponent.stub

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);
}
}