* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com) */ class HomeController extends controller { protected $_config; public function __construct() { $this->_config = request('_config'); } public function index(){ return view($this->_config['view']); } }