$model */ public function __construct(protected string $column, protected string $model) { parent::__construct($column, 'id', false); } public function description(): string { return 'The primary key of the resource'; } public function getFilter(): IntFilter { return new IntFilter($this->name(), $this->getColumn()) ->useEq(); } /** * The resolver to cast the model. */ public function bindResolver(array $args): null { return null; } }