fix skit2

This commit is contained in:
hafifierahman
2022-03-21 10:48:23 +08:00
parent 28fd9a6a64
commit d58e7dcd09
6 changed files with 186 additions and 1 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LookupStatus extends Model
{
protected $table = 'lookup_status';
public $timestamps = false;
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'statusid',
'description'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}