schema([ TextInput::make('first_name'), TextInput::make('last_name'), TextInput::make('email'), TextInput::make('phone'), TextInput::make('notes'), ]); } public function table(Table $table): Table { return $table ->recordTitleAttribute('id') ->columns([ TextColumn::make('first_name'), TextColumn::make('last_name'), TextColumn::make('email'), TextColumn::make('phone'), TextColumn::make('notes'), ]) ->filters([ // ]) ->headerActions([ Tables\Actions\CreateAction::make(), ]) ->actions([ Tables\Actions\EditAction::make(), Tables\Actions\DeleteAction::make(), ]) ->bulkActions([ // Tables\Actions\BulkActionGroup::make([ // Tables\Actions\DeleteBulkAction::make(), // ]), ]); } }