/nova-slate-field

Primary LanguageVueMIT LicenseMIT

Laravel Nova Slate field

StyleCI Quality Score

Contents

Installation

You can install the nova slate field in to a Laravel app that uses Nova via composer:

composer require bbs-lab/nova-slate-field

The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:

'providers' => [
    // ...
    BBSLab\NovaSlateField\FieldServiceProvider::class,
],

Usage

You can use the BBSLab\CloudinaryField\Cloudinary field in your Nova resource:

<?php

namespace App\Nova;

use BBSLab\NovaSlateField\Slate;

class BlogPost extends Resource
{
    // ...
    
    public function fields(Request $request)
    {
        return [
            // ...

            Slate::make('Text'),

            // ...
        ];
    }
    
}

Changelog

Please see CHANGELOG for more information what has changed recently.

Security

If you discover any security related issues, please email paris@big-boss-studio.com instead of using the issue tracker.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.