dominic404 / mifraid
构建网页应用的微型框架
dev-master
2020-04-02 13:24 UTC
Requires
- filp/whoops: ^2.7
- illuminate/database: ^7.2
This package is auto-updated.
Last update: 2024-09-29 05:29:44 UTC
README
MifraID is a mini framework
created to make it easy for you to work on projects
without initializing from the start
作者: Muhammad Fauzan
包含
- Eloquent
- 路由器(自制)
- 控制器(自制)
- 错误处理美观页面(自制)
- 助手(自制)
示例模型
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model as Eloquent; class User extends Eloquent { /** * @var table name */. protected $table ='user'; protected $fillable = [ 'id', 'name' ]; public $timestamps = false; }