paginate(15); return view('poll.latest', compact('polls')); } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show(Request $request, $slug) { $poll = Poll::whereSlug($slug)->firstOrFail(); return view('poll.show', compact('poll')); } public function vote(VoteOnPoll $request) { $user = Auth::user(); $poll = Option::findOrFail($request->input('option.0'))->poll; foreach ($request->input('option') as $option) { Option::findOrFail($option)->increment('votes'); } if (Voter::where('user_id', '=', $user->id)->where('poll_id', '=', $poll->id)->exists()) { Toastr::error('Bro have already vote on this poll. Your vote has not been counted.', 'Whoops!', ['options']); return redirect('poll/' . $poll->slug . '/result'); } if ($poll->ip_checking == 1) { $voter = Voter::create([ 'poll_id' => $poll->id, 'user_id' => $user->id, 'ip_address' => $request->ip() ]); } Toastr::success('Your vote has been counted.', 'Yay!', ['options']); return redirect('poll/' . $poll->slug . '/result'); } public function result($slug) { $poll = Poll::whereSlug($slug)->firstOrFail(); return view('poll.result', compact('poll')); } }