/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
illuminate
/
view
/
Engines
/
Upload File
HOME
<?php namespace Illuminate\View\Engines; abstract class Engine { /** * The view that was last to be rendered. * * @var string */ protected $lastRendered; /** * Get the last view that was rendered. * * @return string */ public function getLastRendered() { return $this->lastRendered; } }