Files
api_arrahn/app/KomuditiPurchase.php
T
2021-02-16 14:57:29 +08:00

26 lines
508 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','time_purchase'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}