Files
api_arrahn/app/BatalGadai.php
T
hafifierahman 232aa41f0e pembuatan api
2020-12-28 18:36:49 +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 = [];
}