Files
api_arrahn/app/LookupAlasan.php
hafifierahman d8c0615073 fix skit2
2022-01-08 11:02:16 +08:00

28 lines
463 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LookupAlasan extends Model
{
protected $table = 'lookup_alasan';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno',
'alasan'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}