Skip to content

fvautour/nova-slate-field

 
 

Repository files navigation

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 [email protected] 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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 53.7%
  • PHP 28.9%
  • JavaScript 16.8%
  • SCSS 0.6%