dominic404 / mifraid
Mini framework for building web app
Package info
Language:JavaScript
Type:framework
pkg:composer/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: 2026-03-01 00:30:52 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; }