Files
2021-02-16 14:57:29 +08:00

26 lines
510 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Komuditi extends Model
{
protected $table = 'komuditi';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'unit_komuditi','transaction_by','date_purchase','transaction_type','time_purchase','nosijil','harga','kodproduk'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}