schema([ TextInput::make('pm_name') ->label('Method Name'), ]); } public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('pm_name') ->label('Method Name') ->sortable(), ]) ->filters([ // ]) ->actions([ Tables\Actions\EditAction::make(), ]) ->bulkActions([ Tables\Actions\DeleteBulkAction::make(), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListPaymentMethods::route('/'), 'create' => Pages\CreatePaymentMethods::route('/create'), 'edit' => Pages\EditPaymentMethods::route('/{record}/edit'), ]; } }