Files
api_arrahn/app/KomuditiTransaksi.php
T
2021-03-09 10:53:26 +08:00

26 lines
518 B
PHP

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