コード例 #1
0
 /**
  * Displays the Bongo Afrika mother dashboard
  * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
  */
 public function bongoMother()
 {
     $innovations = $this->innovationRepository->getAllInnovations();
     $innovations_open = $this->innovationRepository->getAllOPen();
     $innovations_partial = $this->innovationRepository->getAllPartials();
     $innovations_fully = $this->innovationRepository->getAllFullyFunded();
     $investor_requests = $this->investorRequest->getThem();
     $expert_requests = $this->expertRequest->getThem();
     $categories = $this->categoryRepository->getAllCategories();
     return view('admin.mother', compact('innovations_fully', 'innovations_partial', 'innovations_open', 'expert_requests', 'investor_requests', 'innovations', 'categories'));
 }