dominic404/mifraid

Mini framework for building web app

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 1

Language:JavaScript

Type:framework

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

This package is auto-updated.

Last update: 2024-04-29 04:09:47 UTC


README

MifraID is a mini framework 
created to make it easy for you to work on projects 
without initializing from the start

Author: Muhammad Fauzan

Includes

  • Eloquent
  • Router (homemade)
  • Controller (homemade)
  • ErrorHandler Pretty Page (homemade)
  • Helpers (homemade)

Example Models

<?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;

}