Files
api_arrahn/app/BatalGadai.php
T
2021-01-11 17:59:46 +08:00

27 lines
494 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BatalGadai extends Model
{
protected $table = 'batalgadai';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'recno','norujukan','tellerid','namateller', 'tarikh', 'masa'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}