aoeng/laravel-admin-article

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

1.0.9 2023-06-26 02:00 UTC

This package is auto-updated.

Last update: 2024-09-26 04:54:27 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', ...);