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

16 lines
254 B
Plaintext

<?php
namespace {{ namespace }};
use Filament\Infolists\Components\Component;
class {{ class }} extends Component
{
protected string $view = '{{ view }}';
public static function make(): static
{
return app(static::class);
}
}