Files
api_arrahn/app/BatchPembiayaanOnline.php
T
ismailmasseran 90c6b993da
Build Docker Image / build-backend (push) Successful in 22s
Explore/ismail (#10)
Co-authored-by: ISMAIL MASSERAN <topaz@Mac.dlinkrouter.local>
Co-authored-by: ISMAIL MASSERAN <topaz@ISMAILs-Macbook.local>
Co-authored-by: afrina <afrina@koppkb.com>
Reviewed-on: #10
2026-09-06 12:41:25 +08:00

23 lines
387 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BatchPembiayaanOnline extends Model
{
protected $table = 'batch_pembiayaan_online';
protected $fillable = [
'batch_no',
'kodcaw',
'tarikh',
'slot',
'bilangan',
'jumlah_keseluruhan',
'status',
'pc_submitted_by',
'submitted_at',
];
}