Files
api_arrahn/app/Komuditi.php
T
2021-01-24 20:23:10 +08:00

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