
ModStart CMS is a full-stack development framework based on Laravel. It was originally incubated internally by the Magic series of products and now runs stably on thousands of website systems.
ModStart CMS has the following characteristics:
module supports
Built-in building blocks module management development;
fast integration
Based on standard Composer, it can be integrated quickly;
For example, a news management page and system can be implemented with 20 lines of code.
class NewsController extends Controller{
use HasAdminQuickCRUD;
protected function crud(AdminCRUDBuilder $builder)
{
$builder
->init(‘news’)
->field(function ($builder) {
$builder->id(‘id’,’ID’);
$builder->text ('title ',' name');
$builder->richHtml ('content ',' content');
$builder->display ('created_at','creation time');
$builder->display ('updated_at','updated time');
})
->gridFilder(function (GridFilter $filter) {
$filter->eq(‘id’, ‘ID’);
$filter->like ('title ',' title ');
})
->title ('News Management');
}
}
What are the characteristics of ModStart:
Based on this framework, many rapid development features have been derived.
1. Rapid development of background management system
2. Support multi-language development
3. Modular development, plug-in development module development, rapid system integration
Comments0