snowsoft / oatinymce

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Integrate Tinymce into laravel-admin

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).

About

License:MIT License


Languages

Language:PHP 81.5%Language:Blade 18.5%