dominic404/mifraid

构建网页应用的微型框架

安装: 0

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 2

分支: 0

开放问题: 1

语言:JavaScript

类型:框架

dev-master 2020-04-02 13:24 UTC

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;

}