fix skit2

This commit is contained in:
hafifierahman
2022-01-08 11:02:16 +08:00
parent b776924e71
commit d8c0615073
7 changed files with 140 additions and 5 deletions
+28
View File
@@ -0,0 +1,28 @@
<?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 = [];
}