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

26 lines
442 B
PHP

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