$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'; } /** * The resolver to cast the model. */ public function bindResolver(array $args): null { return null; } }