1. Go to this page and download the library: Download kfriars/searchable-select 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/ */
kfriars / searchable-select example snippets
use Kfriars\SearchableSelect\SearchableSelect;
...
SearchableSelect::make('Content', 'content_id')->resource("contents")
... or
SearchableSelect::make("Content", "content_id")->resource(\App\Nova\Content::class)
SearchableSelect::make('Content', 'content_id')
->resource("contents")
->label("custom_label_field") // Defaults to the static $title attribute of the resource class
->labelPrefix("custom_prefix_field") // Allows you to prefix the label field with one other field, i.e. "code":"label"
->value("custom_value_field") // Defaults to 'id'