10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class PaymentInstallmentAllocation extends BaseModel
|
|
{
|
|
protected $guarded = [];
|
|
protected $table = 'payment_installment_allocations';
|
|
}
|