snowsoft/oatinymce

Integrate tinymce into laravel-admin

0.01 2023-10-03 12:21 UTC

This package is auto-updated.

Last update: 2024-05-03 13:45:58 UTC


README

This is a laravel-admin extension that integrates Tinymce into the laravel-admin form.

Installation

composer require snowsoft/oatinymce

Then

php artisan vendor:publish --tag=laravel-admin-oatinymce

Configuration

In the extensions section of the config/admin.php file, add some configuration that belongs to this extension.

    'extensions' => [

        'tinymce' => [
        
            //Set to false if you want to disable this extension
            'enable' => true,
            
            // Editor configuration
            'config' => [
                
            ]
        ]
    ]
    'config' => [
        'lang'   => 'tr-TR',
        'height' => 500,
    ]

Usage

Use it in the form:

$form->tinymce('content');

// Set config
$form->tinymce('content')->options(['lang' => 'tr', 'height' => 500]);

License

Licensed under The MIT License (MIT).