Files
freeu-project/app/View/Components/LongOnlyEquityFunds.php
2024-04-04 19:47:22 +05:30

32 lines
603 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class LongOnlyEquityFunds extends Component
{
public $type,$hfAllData;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($hfData,$type)
{
$this->hfAllData = $hfData;
$this->type = $type;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.long-only-equity-funds');
}
}