Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
phosphorylation
/
tecas-solar.ma
/
vendor
/
filament
/
tables
/
src
/
Columns
:
TextInputColumn.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Filament\Tables\Columns; use Closure; use Filament\Forms\Components\Concerns\HasExtraInputAttributes; use Filament\Forms\Components\Concerns\HasInputMode; use Filament\Forms\Components\Concerns\HasStep; use Filament\Support\RawJs; use Filament\Tables\Columns\Contracts\Editable; class TextInputColumn extends Column implements Editable { use Concerns\CanBeValidated; use Concerns\CanUpdateState; use HasExtraInputAttributes; use HasInputMode; use HasStep; /** * @var view-string */ protected string $view = 'filament-tables::columns.text-input-column'; protected string | RawJs | Closure | null $mask = null; protected string | Closure | null $type = null; protected function setUp(): void { parent::setUp(); $this->disabledClick(); } public function type(string | Closure | null $type): static { $this->type = $type; return $this; } public function getType(): string { return $this->evaluate($this->type) ?? 'text'; } public function mask(string | RawJs | Closure | null $mask): static { $this->mask = $mask; return $this; } public function getMask(): string | RawJs | null { return $this->evaluate($this->mask); } }