added penyelarasan table to remove bakilelong hardcode and put in untungrugiterkumpul

This commit is contained in:
hafifierahman
2025-07-05 02:28:55 +08:00
parent 9255991a1d
commit 7ccca55b71
4 changed files with 72 additions and 22 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Penyelarasan extends Model
{
protected $table = 'penyelarasan';
// public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kodcaw',
'rugilelong',
'bakilelong',
'lain-lain',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}