Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $data['body_class'] = 'election detail';
- $data['election'] = (
- Election::where('slug', $electionSlug)
- ->where('uuid', $request->uuid)
- ->where('status', 1)
- ->firstOrFail()
- );
- $hostels = DB::table('battle_room')->where('elections_id', $request->uuid)->get();
- $blocks = array();
- foreach($hostels as $hostel) {
- $blocks[] = DB::table('pasangan_calon')->where('id', $hostel->pasangan_calon_id)->get();
- }
- return view('pages/pemilihan/mulai-page',['blocks' => $blocks], $data);
Advertisement
Add Comment
Please, Sign In to add comment