diff --git a/app/Http/Controllers/Admin/Dashboard/AdminDashboardController.php b/app/Http/Controllers/Admin/Dashboard/AdminDashboardController.php index 75a5fc0..20f3b71 100644 --- a/app/Http/Controllers/Admin/Dashboard/AdminDashboardController.php +++ b/app/Http/Controllers/Admin/Dashboard/AdminDashboardController.php @@ -28,7 +28,6 @@ public function index() $mentorshipSummary = []; $menteeMentorProfiles = MenteeProfile::whereHas('mentorProfiles')->get(); foreach ($menteeMentorProfiles as $mentee) { - $summary; $menteeUser = $mentee->user; $summary['menteeFirstName'] = $menteeUser->first_name; $summary['menteeLastName'] = $menteeUser->last_name; diff --git a/app/Http/Controllers/Profiles/MentorProfileController.php b/app/Http/Controllers/Profiles/MentorProfileController.php index ce6687d..96dbc5f 100644 --- a/app/Http/Controllers/Profiles/MentorProfileController.php +++ b/app/Http/Controllers/Profiles/MentorProfileController.php @@ -35,7 +35,7 @@ public function create() /** * Store a newly created resource in storage. * - * @param \App\Http\Requests\MentorProfileRequest $request + * @param \App\Http\Requests\MentorProfileRequest $request * @return \Illuminate\Http\Response */ public function store(MentorProfileRequest $request)