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

31 lines
595 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class HedgeFundProduct 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.hedge-fund-product');
}
}