loan remaining added

This commit is contained in:
2024-11-26 01:37:59 +05:00
parent 5d5e269285
commit 8b87f58a0c
9 changed files with 224 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Modules\LoanRemainingOrder\Models;
use Illuminate\Database\Eloquent\Model;
class LoanRemainingOrder extends Model
{
protected $table = 'loan_remaining_orders';
}