composer require laravel-admin-ext/css-editor
php artisan vendor:publish --tag=laravel-admin-code-mirror
In extensions
section of file config/admin.php
,add following configurations
'extensions' => [
'css-editor' => [
// set to false if you want to disable this exteions
'enable' => true,
// editor configuration
'config' => [
]
]
]
The configuration of the editor can be found in CodeMirror Documents
Use it in form
$form->css('code');
$form->scss('code');
$form->less('code');
Set height
$form->css('code')->height(500);
Help keeping the project development going, by donating a little. Thanks in advance.
Licensed under The MIT License (MIT).