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

31 lines
641 B
PHP

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class IndianResidentialRealEstateProduct extends Component
{
public $type,$irreAllData;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($irreData,$type)
{
$this->irreAllData = $irreData;
$this->type = $type;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.indian-residential-real-estate-product');
}
}