Files
api_arrahn/app/KomuditiPurchase.php
T
2021-01-28 12:00:56 +08:00

26 lines
492 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class KomuditiPurchase extends Model
{
protected $table = 'komuditi_purchase';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'unit_komuditi','purchased_by','date_purchase','nilai','no_sijil','kodproduct'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}