11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class PaymentCarryforwardAllocation extends BaseModel
|
|
{
|
|
protected $guarded = [];
|
|
|
|
protected $table = 'payment_carryforward_allocations';
|
|
}
|