Nova custom Text Field with a link to a resource (or any URL) on index screen.
Nova links ID fields to a resource by default. The custom field is useful if you're using a text ID field or want to link a resource's title, as shown below.
The field behaves just like the default text field on detail and form screens.
composer require nikans/text-linked
TextLinked::make('Title', 'title')
->link($this),
TextLinked::make('ID')
->link($this),
TextLinked::make('Title', 'title')
->linkResource($this->uriKey(), $this->id),
TextLinked::make('ID')
->url("https://novapackages.com"),