Files
animethemes-server/app/Filament/Components/Fields/TextInput.php
T

22 lines
413 B
PHP

<?php
declare(strict_types=1);
namespace App\Filament\Components\Fields;
use App\Filament\StateCasts\UriStateCast;
use Filament\Forms\Components\TextInput as BaseTextInput;
class TextInput extends BaseTextInput
{
/**
* Set the field to be a URI input.
*/
public function uri(): static
{
return $this
->stateCast(app(UriStateCast::class))
->url();
}
}