middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $data['categories'] = Categories::getTree(); $data['category'] = Categories::get(15)->toArray(); $data['articles'] = Articles::getByCategory(0)->toArray(); // dump($data); return view('Shop.home', $data); } }