/home/techb158/immovalet.com/platform/packages/shortcode/src/View
Edit: /home/techb158/immovalet.com/platform/packages/shortcode/src/View/Factory.php (1671B)
shortcode = $shortcode;
}
/**
* Get the evaluated view contents for the given view.
*
* @param string $view
* @param array $data
* @param array $mergeData
* @return \Illuminate\Contracts\View\View|string|View
* @since 2.1
*/
public function make($view, $data = [], $mergeData = [])
{
if (isset($this->aliases[$view])) {
$view = $this->aliases[$view];
}
$path = $this->finder->find($view);
$data = array_merge($mergeData, $this->parseData($data));
$this->callCreator($view = new View($this, $this->getEngineFromPath($path), $view, $path, $data,
$this->shortcode));
return $view;
}
}