Files
api_arrahn/app/Marhun.php
T
2020-11-01 08:45:53 +08:00

27 lines
512 B
PHP

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