aoeng/laravel-admin-article

laravel admin 扩展 带分类的文章管理

1.0.9 2023-06-26 02:00 UTC

This package is auto-updated.

Last update: 2024-04-26 03:38:18 UTC


README

安装

composer require  aoeng/laravel-admin-article

php artisan migrate

导入菜单

php artisan admin:import article

配置编辑器 admin.php的扩展配置里加上

默认使用ckeditor

 'ckeditor' => [

            //Set to false if you want to disable this extension
            'enable' => true,

            // Editor configuration
            'config' => [
                'filebrowserImageUploadUrl' => '/editor/upload?',
                'image_previewText' => ' ',
                'lang'   => 'zh-CN',
                'height' => 500
            ]
        ],

其他编辑器配置app\Admin\bootstrap.php

use Encore\Admin\Form;

Form::extend('editor', ...);