components([ TextInput::make('title') ->required() ->live(onBlur: true), TextInput::make('description') ->nullable(), Textarea::make('content') ->rows(5) ->columnSpanFull(), Select::make('category_id') ->label('Category') ->options(function () { return Category::all() ->pluck('name', 'id') ->toArray(); }) ->searchable(), ]); } }