*/ class IdColumn extends ModelColumn { protected $sortColumn = 'id'; /** * @inheritDoc * * @since 3.6.0 */ public static function getId(): string { return 'id'; } /** * @inheritDoc * * @since 3.6.0 */ public function getLabel(): string { return __('ID', 'give'); } /** * @inheritDoc * * @since 3.6.0 * * @param Event $model */ public function getCellValue($model): int { return $model->id; } }