PHP code example of jangvel / nova-gutenberg

1. Go to this page and download the library: Download jangvel/nova-gutenberg 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/ */

    

jangvel / nova-gutenberg example snippets


use Jangvel\NovaGutenberg\NovaGutenberg;

public function fields(Request $request)
{
    return [
        NovaGutenberg::make(__('Content'), 'content'),
    ];
}

use Illuminate\Database\Eloquent\Model;
use VanOns\Laraberg\Traits\RendersContent;

class Post extends Model
{
    use RendersContent;
    
    protected $contentColumn = 'content';
       
    ...
}

{!! $model->render() !!}

NovaGutenberg::make(__('Content'), 'content')->height(600)
bash
php artisan vendor:publish --provider="VanOns\Laraberg\LarabergServiceProvider"