snowsoft / oatinymce
Integrate tinymce into laravel-admin
0.01
2023-10-03 12:21 UTC
Requires
- php: >=8.0.0
- snowsoft/open-admin: >=v0.01
Requires (Dev)
- phpunit/phpunit: ~6.0
This package is auto-updated.
Last update: 2024-11-03 14:50:19 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).