with('applications', Application::where('applicationStatus', 'STAGE_PEERAPPROVAL')->get()); } public function forceVoteCount(Request $request) { $application = Application::find($request->application); if (!is_null($application)) { event(new ApplicationApprovedEvent($application)); $request->session()->flash('success', 'Event dispatched! Please check the debug logs for more info'); } else { $request->session()->flash('error', 'Application doesn\'t exist!'); } return redirect()->back(); } }