added autoserahan endpoints
This commit is contained in:
committed by
Hafifie PKB
parent
e825bb21c2
commit
73c8220e1a
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ApprovalWithdrawal extends Model
|
||||
{
|
||||
protected $table = 'approval_withdrawal';
|
||||
public $timestamps = true;
|
||||
protected $primaryKey = 'id';
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'kodcaw',
|
||||
'pc_name',
|
||||
'operasi_name',
|
||||
'amount',
|
||||
'approval_status',
|
||||
'updated_serahan_v2',
|
||||
'updated_pendahuluan_v3',
|
||||
'approval_timestamp',
|
||||
'gldetail_id'
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user