ModStartCMS is a full-stack development framework based on Laravel. It was originally incubated internally by the Mozhong series of products and is now running stably in thousands of website systems.
ModStartCMS has the following characteristics:
Module support
Built-in building block module management and development;
Quick integration
Based on standard Composer, it can be quickly integrated;
For example, a news management page and system for adding, deleting, modifying, and checking can be implemented with 20 lines of code.
classNewsControllerextendsController{
useHasAdminQuickCRUD;
protectedfunctioncrud(AdminCRUDBuilder$builder)
{
$builder
->init('news')
->field(function($builder){
$builder->id('id','ID');
$builder->text('title','name');
$builder->richHtml('content','content');
$builder->display('created_at','created time');
$builder->display('updated_at','updated time');
})
->gridFilder(function(GridFilter$filter){
$filter->eq('id','ID');
$filter->like('title','title');
})
->title('News Management');
}
}
What features does ModStart have:
Based on this framework, many rapid development features have been derived.
1. Rapid development of backend management system
2. Support multi-language development
3. Modular development, plug-in development & module development, rapid system integration