Files
api_arrahn/app/TujuanGadai.php
T
2021-01-04 08:48:55 +08:00

26 lines
416 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TujuanGadai extends Model
{
protected $table = 'tujuan_gadai';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'keterangan'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}