File: /home/posscale/www/printmanager/vendor/filament/infolists/src/Components/Tabs/Tab.php
<?php
namespace Filament\Infolists\Components\Tabs;
use Filament\Infolists\Components\Component;
use Filament\Support\Concerns\HasBadge;
use Filament\Support\Concerns\HasIcon;
use Illuminate\Support\Str;
class Tab extends Component
{
use HasBadge;
use HasIcon;
/**
* @var view-string
*/
protected string $view = 'filament-infolists::components.tabs.tab';
final public function __construct(string $label)
{
$this->label($label);
$this->id(Str::slug(Str::transliterate($label, strict: true)));
}
public static function make(string $label): static
{
$static = app(static::class, ['label' => $label]);
$static->configure();
return $static;
}
public function getId(): string
{
return $this->getContainer()->getParentComponent()->getId() . '-' . parent::getId() . '-tab';
}
/**
* @return array<string, int | null>
*/
public function getColumnsConfig(): array
{
return $this->columns ?? $this->getContainer()->getColumnsConfig();
}
}