/** * @return \Illuminate\View\View */ public function home() { $projects = Project::limit(9)->orderBy('created_at', 'desc')->get(); return view('frontend.home', compact('projects')); }