schema([ Forms\Components\TextInput::make('type') ->required() ->maxLength(255), Forms\Components\Textarea::make('description') ->maxLength(65535), ]); } public function table(Tables\Table $table): Tables\Table { return $table ->columns([ Tables\Columns\TextColumn::make('type'), Tables\Columns\TextColumn::make('description'), Tables\Columns\TextColumn::make('created_at') ->dateTime(), ]) ->filters([ // ]); } }