Files
api_arrahn/app/Penyelarasan.php
T

32 lines
516 B
PHP

<?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 = [];
}