Auth::user()->id, 'allowedVoteType' => $voteRequest->voteType, ]); $vote->application()->attach($applicationID); Log::info('User ' . Auth::user()->name . ' has voted in applicant ' . $application->user->name . '\'s application', [ 'voteType' => $voteRequest->voteType ]); $voteRequest->session()->flash('success', 'Your vote has been registered! You will now be notified about the outcome of this application.'); } else { $voteRequest->session()->flash('error', 'Can\t vote a non existant application!'); } // Cron job will run command that processes votes return redirect()->back(); } }