public function getFromBloco()
 {
     $bloco_id = \Request::input('option');
     return \portaria\Unidade::where('bloco_id', $bloco_id)->lists('numero', 'id');
 }
 public function createStructure($id)
 {
     $blocosGerados = 0;
     $unidadesGeradas = 0;
     $blocos = \portaria\Bloco::where('condominio_id', $id)->first();
     if (!empty($blocos)) {
         $condominio = \portaria\Condominio::find($id);
         $message_type = 'danger';
         $message = '<strong>Erro!</strong><br><p>A estrutura para o condomínio <strong>' . $condominio->nome . '</strong> já está gerada!</p>';
     } else {
         for ($i = 1; $i <= 10; $i++) {
             $bloco = \portaria\Bloco::create(['numero' => $i, 'condominio_id' => $id]);
             $blocosGerados++;
             for ($x = 100; $x <= 400; $x += 100) {
                 for ($y = 1; $y <= 4; $y++) {
                     $numero = $x + $y;
                     $unidade = \portaria\Unidade::create(['bloco_id' => $bloco->id, 'numero' => $numero]);
                     $unidadesGeradas++;
                 }
             }
         }
         $message_type = 'info';
         $message = '<strong>Sucesso!</strong><br><p>Foi gerado a seguinte estrutura: <strong>' . $blocosGerados . '</strong> blocos e <strong>' . $unidadesGeradas . '</strong> unidades';
     }
     return back()->with(compact('message_type', 'message'));
 }
 protected function getUnidades($id)
 {
     $unidades = \portaria\Unidade::where('bloco_id', $id)->lists('numero', 'id');
     return $unidades;
 }