All Projects → modstart → ModStartCMS

modstart / ModStartCMS

Licence: other
模块化内容管理系统 modstart.com

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects
Vue
7211 projects

Projects that are alternatives of or similar to ModStartCMS

WalkTheWeb
WalkTheWeb 3D Internet - Metaverse - Multiverse - Host your own multiplayer Metaverse of 3D Games, 3D Shopping, and 3D Scenes!
Stars: ✭ 28 (-87.1%)
Mutual labels:  cms-framework
FusionCMS
A CMS for World of Warcraft private servers
Stars: ✭ 18 (-91.71%)
Mutual labels:  cms-framework
server-next
😎 The next generation of RESTful API service and more for Mix Space, powered by @nestjs.
Stars: ✭ 43 (-80.18%)
Mutual labels:  cms-framework
lumen-cms
GraphQL API-First CMS based on NodeJS and Vue 2, Nuxt and Vuetify
Stars: ✭ 77 (-64.52%)
Mutual labels:  cms-framework
ncms
Java CMS engine. Host and develop multiple websites inside a single instance through the GUI and benefit from features like A/B testing, affiliate tracking tools, and a high performance template engine with CSS stylesheets processing & scripts minification.
Stars: ✭ 32 (-85.25%)
Mutual labels:  cms-framework
OnceBuilder
OnceBuilder - managment tool, mange projects, templates, plugins in one place.
Stars: ✭ 18 (-91.71%)
Mutual labels:  cms-framework
ginadmin
基于Gin开发的后台管理系统,集成了、数据库操作、日志管理、权限分配管理、多模板页面、自动分页器、数据库迁移和填充、Docker集成部署等功能、静态资源打包
Stars: ✭ 149 (-31.34%)
Mutual labels:  cms-framework
UltimateCMSWordlists
📚 An ultimate collection wordlists of the best-known CMS
Stars: ✭ 54 (-75.12%)
Mutual labels:  cms-framework
nt-cms
nest.js with CMS
Stars: ✭ 61 (-71.89%)
Mutual labels:  cms-framework
Slovo
Искони бѣ Слово - already in production at https://слово.бг
Stars: ✭ 17 (-92.17%)
Mutual labels:  cms-framework
strapi-pro
Strapi.io with image upload, location, wyswyg input
Stars: ✭ 14 (-93.55%)
Mutual labels:  cms-framework
GeniXCMS
Simple and Lightweight CMS Framework
Stars: ✭ 35 (-83.87%)
Mutual labels:  cms-framework
ztbcms
高性能、模块化、极速开发PHP Web框架
Stars: ✭ 40 (-81.57%)
Mutual labels:  cms-framework
typijs
The Angular CMS Framework for building fully-featured SPA sites powered by NodeJS and MongoDB with TypeScript
Stars: ✭ 141 (-35.02%)
Mutual labels:  cms-framework
TriTan-CMS
TriTan CMS is a developer centric content management framework that allows you to go completely headless or nearly headless. With the mighty TriTan, you can build amazing RESTful applications and robust websites.
Stars: ✭ 19 (-91.24%)
Mutual labels:  cms-framework
TheOpenCMS
TheOpenCMS. CMS on Rails
Stars: ✭ 36 (-83.41%)
Mutual labels:  cms-framework
cannercms
⚡️[NOT MAINTAINED] Content Management Framework creates custom CMS fast and easy. Support data sources such as Firebase/Firestore, GraphQL and Restful APIs.
Stars: ✭ 2,452 (+1029.95%)
Mutual labels:  cms-framework
Hisar
🏰 Hisar: Cross-Platform Modular Component Development Infrastructure
Stars: ✭ 19 (-91.24%)
Mutual labels:  cms-framework
cms
🛠️ Simple smart CMS for Nette and Vue.js
Stars: ✭ 12 (-94.47%)
Mutual labels:  cms-framework
dash
The simple framework for php programmers ;)
Stars: ✭ 13 (-94.01%)
Mutual labels:  cms-framework

ModStart

模块化的极速开发框架

License Apache2.0 GitHub last commit GitHub last release
Laravel Laravel Laravel

ModStart是基于Laravel的模块化极速开发框架

🔥 功能一览

最新版本 GitHub last release,功能完善,模块市场丰富,欢迎交流。QQ交流群: 467107293

💡 系统简介

ModStart 是一个基于 Laravel 模块化极速开发框架。模块市场拥有丰富的功能应用,支持后台一键快速安装,让开发者能快的实现业务功能开发。

系统完全开源,基于 Apache 2.0 开源协议,免费且不限制商业使用

功能架构

技术栈

💥 系统特性

  • 简洁优雅、灵活可扩展
  • 后台RBAC权限管理
  • 模块化开发,积木式搭建系统
  • 组件按需加载静态资源
  • 丰富的数据表格、数据表单功能
  • 内置文件上传,无需繁琐的开发
  • 丰富的模块市场,后台一键快速安装

🎨 系统演示

前台演示地址

http://cms.demo.tecmz.com/

用户密码自行注册使用

后台演示地址

http://cms.demo.tecmz.com/admin

账号:demo 密码:123456 (演示账号为只读权限)

🎁 模块市场

丰富的模块市场,后台一键安装模块应用

模块市场

🌐 开发文档

https://modstart.com/doc

🔧 系统安装

环境要求

  • PHP 5.6 或 7.0
  • MySQL >=5.0
  • PHP ExtensionFileinfo
  • Apache/Nginx

强力推荐使用PHP 5.6 或 7.0 版本,系统稳定性最好

安装说明

升级指南

参照 https://modstart.com/doc/install/upgrade.html

🔨 开发速看

以下以一个简单的新闻增删改查页面为例,快速了解 ModStart 开发的大致流程。

数据表迁移文件

class CreateNews extends Migration
{
    public function up()
    {
        Schema::create('news', function (Blueprint $table) {
            $table->increments('id');
            $table->timestamps();
            $table->string('title', 200)->nullable()->comment('');
            $table->string('cover', 200)->nullable()->comment('');
            $table->string('summary', 200)->nullable()->comment('');
            $table->text('content')->nullable()->comment('');
        });
    }
    public function down()
    {
        //
    }
}

控制器代码

class NewsController extends Controller
{
    use HasAdminQuickCRUD;
    protected function crud(AdminCRUDBuilder $builder)
    {
        $builder
            ->init('news')
            ->field(function ($builder) {
                $builder->id('id','ID');
                $builder->text('title', '名称');
                $builder->image('cover', '封面');
                $builder->textarea('summary', '摘要');
                $builder->richHtml('content', '内容');
                $builder->display('created_at', '创建时间');
                $builder->display('updated_at', '更新时间');
            })
            ->gridFilter(function (GridFilter $filter) {
                $filter->eq('id', 'ID');
                $filter->like('title', '标题');
            })
            ->title('新闻管理');
    }
}

增加路由和导航

routes.php 增加路由信息

$router->match(['get', 'post'], 'news', 'NewsController@index');
$router->match(['get', 'post'], 'news/add', 'NewsController@add');
$router->match(['get', 'post'], 'news/edit', 'NewsController@edit');
$router->match(['get', 'post'], 'news/delete', 'NewsController@delete');
$router->match(['get', 'post'], 'news/show', 'NewsController@show');

ModuleServiceProvider.php 中注册菜单信息

AdminMenu::register(function () {
    return [
        [
            'title' => '新闻管理',
            'icon' => 'list',
            'sort' => 150,
            'url' => '\App\Admin\Controller\NewsController@index',
        ]
    ];
});

这样一个简单的新闻增删改查页面就开发完成了。

📋 常见问题

我们列举了常见问题,请查看官方标准指南

https://modstart.com/doc/install/qa.html

如有其他问题推荐使用官方讨论交流群或在线讨论

https://modstart.com/forum

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].