Tukar step pampasan v3 ke v2:

This commit is contained in:
aiman
2025-09-14 15:54:31 +08:00
committed by Afiq Hamzah
parent 1f27d90698
commit 977fab853d
6 changed files with 205 additions and 16 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pampasan extends Model
{
protected $table = 'pampasan';
public $timestamps = true;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'id',
'norujukan',
'baucerno',
'kodcaw',
'jumlah_pampasan',
'teller',
'nota'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}