Files
api_arrahn/app/Status.php
T
hafifierahman d58e7dcd09 fix skit2
2022-03-21 10:48:23 +08:00

31 lines
531 B
PHP

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