added autoserahan endpoints

This commit is contained in:
hafifierahman
2025-02-24 01:32:05 +08:00
committed by Hafifie PKB
parent e825bb21c2
commit 73c8220e1a
4 changed files with 184 additions and 0 deletions
+29
View File
@@ -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'
];
}