This is a text field that stores a url to target image.
Install package
composer require shedcollective/nova-unsplash-field
Set Unsplash ACCESS_KEY in config/services.php
'unsplash' => [
'key' => env('UNSPLASH_ACCESS_KEY')
],
use Shed\Unsplash\Unsplash;
public function fields(Request $request)
{
return [
// ...
Unsplash::make('Cover'),
];
}