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

31 lines
615 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class GlobalREITSProduct extends Component
{
public $type,$reitsAllData;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($reitsData,$type)
{
$this->reitsAllData = $reitsData;
$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-r-e-i-t-s-product');
}
}