16 lines
479 B
PHP
16 lines
479 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class LeaseBasedFinancing extends Model
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
|
||
|
|
protected $hidden = ['created_at','updated_at'];
|
||
|
|
|
||
|
|
protected $fillable = ['products_id','company','slug','asset_class','underlying_asset','sector','mobility_platform','total_deal_size','minimum_investment','tenure','payout_frequency','pre_tax_return','minimum_investment_in_int'];
|
||
|
|
}
|