Filament membuat slug otomatis dari nama
Berikut codingan filament untuk membuat inputan slug otomatis dari nama
use Filament\Forms\Components\TextInput;
use Filament\Forms\Set;
use Illuminate\Support\Str;
TextInput::make('title')
->live(onBlur: true)
->afterStateUpdated(fn (Set $set, ?string $state) => $set('slug', Str::slug($state)))
TextInput::make('slug')
Komentar
Posting Komentar