added penyelarasan and fix onepercent formula for lejeram

This commit is contained in:
Hafifie PKB
2024-05-14 08:36:03 +08:00
parent 2e533660e5
commit 565136c744
11 changed files with 339 additions and 40 deletions
+39
View File
@@ -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 = [];
}