16 lines
391 B
PHP
16 lines
391 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PeerToPeerLending extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $hidden = ['created_at','updated_at'];
|
|
|
|
protected $fillable = ['products_id','slug','scheme','tenure','minimum_investment','maximum_investment','returns','minimum_investment_in_int'];
|
|
}
|