First Commit

This commit is contained in:
Pusdatin BPKD Jkt
2022-07-07 16:29:51 +07:00
commit 886e2d5002
2626 changed files with 1160844 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class MstGolongan extends Model
{
use HasFactory;
protected $table = 'mst_golongan';
protected $fillable = [
'nama_golongan', 'nama_pangkat', 'golongan_besar','alias'
];
}