komuditi pukal

This commit is contained in:
afiq
2021-01-24 20:23:10 +08:00
parent 864c86ff45
commit e55788243d
5 changed files with 176 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
<?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 = [];
}