Example #1
0
 public function getListByGender($slug)
 {
     $currentMC = collect();
     $currentMC->name = \App\Gender::getGenderBySlug($slug)[0]->gender;
     $currentMC->fonticon = "";
     $projects = \App\Project::getProjectsByGender($slug);
     //dump($currentMC);
     return view('cosplaydesign.pages.lista', compact("projects", "currentMC"));
 }