Files
api_arrahn/app/LelMarhun.php
T
2022-11-16 06:55:06 +08:00

33 lines
535 B
PHP

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