* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com) */ class HomeController extends controller { protected $_config; protected $sliders; protected $current_channel; public function __construct(Sliders $s) { $this->_config = request('_config'); $this->sliders = $s; } public function index() { $current_channel = core()->getCurrentChannel(); $all_sliders = $this->sliders->findWhere(['channel_id'=>$current_channel['id']]); return view($this->_config['view'])->with('sliderData',$all_sliders->toArray()); } }