Looking to hire Laravel developers? Try LaraJobs

laravel-admin-article maintained by aoeng

Description
laravel admin 扩展 带分类的文章管理
Authors
Last update
2023/06/26 04:00 (dev-master)
License
Links
Downloads
99

Comments
comments powered by Disqus

laravel-admin extension 文章管理

安装

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', ...);