Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 482 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 482 Bytes

Quick start

Overview

This is a text field that stores a url to target image.

Installation

Install package

composer require shedcollective/nova-unsplash-field

Set Unsplash ACCESS_KEY in config/services.php

    'unsplash' => [
        'key' => env('UNSPLASH_ACCESS_KEY')
    ],

Usage

use Shed\Unsplash\Unsplash;

public function fields(Request $request)
{
    return [
        // ...

        Unsplash::make('Cover'),
    ];
}