add loan order required docs
This commit is contained in:
26
app/Modules/LoanOrder/Models/LoanOrderRequiredDocs.php
Normal file
26
app/Modules/LoanOrder/Models/LoanOrderRequiredDocs.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Modules\LoanOrder\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Spatie\Translatable\HasTranslations;
|
||||
|
||||
class LoanOrderRequiredDocs extends Model
|
||||
{
|
||||
use HasTranslations;
|
||||
|
||||
/**
|
||||
* Table
|
||||
*/
|
||||
protected $table = 'loan_order_required_docs';
|
||||
|
||||
/**
|
||||
* Translatable fields
|
||||
*
|
||||
* @var array<int, string>
|
||||
*/
|
||||
public $translatable = [
|
||||
'name',
|
||||
'value',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user