Files
freeu-project/app/View/Components/GlobalPrivateCreditFundProduct.php
Ritikesh yadav 29d23ba647 fix changes
2024-04-05 19:30:15 +05:30

32 lines
636 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class GlobalPrivateCreditFundProduct extends Component
{
/**
* Create a new component instance.
*
* @return void
*/
public $gpcfAllData, $type;
public function __construct($gpcfData, $type)
{
$this->gpcfAllData = $gpcfData;
$this->type = $type;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.global-private-credit-fund-product');
}
}