first commit

This commit is contained in:
2022-04-13 13:51:55 +07:00
commit 47e209c023
3107 changed files with 238911 additions and 0 deletions

14
app/Models/M_User.php Normal file
View File

@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class M_User extends Model
{
protected $table = 'user'; //nama table yang kita buat lewat migration adalah todo
protected $primaryKey = 'Id';
const CREATED_AT = null;
const UPDATED_AT = null;
}