added penyelarasan and fix onepercent formula for lejeram
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Coordination extends Model
|
||||
{
|
||||
protected $table = 'coordination';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
|
||||
'id',
|
||||
'details',
|
||||
'glcode',
|
||||
'date',
|
||||
'reg_user_id',
|
||||
'ver_op_user_id',
|
||||
'ver_acc_user_id',
|
||||
'amount',
|
||||
'jenis'
|
||||
];
|
||||
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
// protected $hidden = [];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user