11 lines
261 B
PHP
11 lines
261 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class FinanceBalanceCarryforward extends BaseModel
|
|
{
|
|
protected $guarded = [];
|
|
protected $table = 'finance_balance_carryforwards';
|
|
protected $casts = ['source_invoice_ids_json' => 'array', 'metadata_json' => 'array'];
|
|
}
|