PHP code example of dillingham / nova-id-link

1. Go to this page and download the library: Download dillingham/nova-id-link library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dillingham / nova-id-link example snippets


use Laravel\Nova\Fields\ID;

public function boot()
{
    ID::useComponent('nova-id-link');
}

public function fields(Request $request)
{
    return [
        ID::make()->linked(),
    ];
}