Files
freeu-project/app/Models/StockFundsRealEstateExchange.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

14 lines
451 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class StockFundsRealEstateExchange extends Model
{
use HasFactory;
protected $fillable = ['products_id','name','type','slug','ticker','exchange','about','industry','market_cap','pe_ratio','dividend_yield','beta','provider','category','expense_ratio','month1_return','month6_return','year1_return','year3_return'];
}