コード例 #1
0
 public function getAll()
 {
     $period = new Period();
     $current_period = $period->active()->first();
     $img = new Image();
     $periods = $period->all();
     $winners = [];
     $pp_images = !is_null($current_period) ? $img->pastperiod($current_period)->get() : null;
     $rules = ['Hi everyone! Welcome to the Zeal Optics Ski Goggles Game!', 'The game goes on for 4 periods.', 'The photo with the most votes wins!', 'Every period a new winner is selected!', 'The rules are simple: register, post the most amazing and unique photo from your last ski vacation.', 'Sit back, relax and wait until the end of the period!', 'After every period the winners will be published on this page.', 'You can only post once!', 'You can als vote, but also only once for each photo!'];
     $past_periods = $period->past()->get();
     if ($past_periods) {
         foreach ($past_periods as $key => $p) {
             $winners['Period ' . ($key + 1)] = Votes::winners($p);
         }
     }
     $images = $current_period != null ? $img->with('author')->active($current_period)->get() : null;
     return view('home', compact('images', 'winners', 'rules', 'pp_images', 'periods'));
 }