Files
animethemes-server/app/Filament/Components/Fields/TextInput.php
T
2025-12-10 20:50:16 -03:00

19 lines
361 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
{
public function uri(): static
{
return $this
->stateCast(resolve(UriStateCast::class))
->url();
}
}