add school year model

This commit is contained in:
root
2026-06-07 00:52:01 -04:00
parent a192ed433d
commit 6866aedf42
36 changed files with 4771 additions and 88 deletions
+27
View File
@@ -0,0 +1,27 @@
<?php
namespace App\Models;
class ParentBalanceTransfer extends BaseModel
{
protected $table = 'parent_balance_transfers';
protected $fillable = [
'parent_id',
'from_school_year',
'to_school_year',
'amount',
'status',
'source_summary_json',
'new_invoice_id',
'created_by',
];
protected $casts = [
'parent_id' => 'integer',
'amount' => 'decimal:2',
'source_summary_json' => 'array',
'new_invoice_id' => 'integer',
'created_by' => 'integer',
];
}