https://github.com/dillingham/nova-id-link
Nova package that links the ID field, quicker navigation
https://github.com/dillingham/nova-id-link
laravel laravel-nova
Last synced: 12 months ago
JSON representation
Nova package that links the ID field, quicker navigation
- Host: GitHub
- URL: https://github.com/dillingham/nova-id-link
- Owner: dillingham
- License: mit
- Created: 2019-02-01T01:47:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-29T02:28:18.000Z (over 5 years ago)
- Last Synced: 2025-06-09T12:52:28.251Z (about 1 year ago)
- Topics: laravel, laravel-nova
- Language: PHP
- Homepage:
- Size: 17.6 KB
- Stars: 23
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
## Nova ID Link
[](https://packagist.org/packages/dillingham/nova-id-link)
[](https://packagist.org/packages/dillingham/nova-id-link) [](https://twitter.com/im_brian_d)
### This behavior is now default for Nova 3.8 & up
Nova package that links the Nova ID field for a quicker click-through from the left side menu.

### Install
```
composer require dillingham/nova-id-link
```
### Usage
You can globally link all ID fields in your **NovaServiceProvider**:
```php
use Laravel\Nova\Fields\ID;
```
```php
public function boot()
{
ID::useComponent('nova-id-link');
}
```
or chain `->linked()` to the existing Nova ID field in your **resources**:
```php
public function fields(Request $request)
{
return [
ID::make()->linked(),
];
}
```
---
# Author
Hi 👋, Im Brian Dillingham, creator of this Nova package [and others](https://novapackages.com/collaborators/dillingham)
Hope you find it useful. Feel free to reach out with feedback.
Follow me on twitter: [@im_brian_d](https://twitter.com/im_brian_d)