Files
api_arrahn/app/Status.php
T
hafifierahman 229f319d17 fix
2022-04-17 11:24:13 +08:00

31 lines
536 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',
'nopermohonan',
'statusid',
'tarikhmasa'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}