Advertisement
JoanMarcos

Untitled

Jun 13th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.81 KB | None | 0 0
  1. <div class="box-body" style="background-color: rgba(234, 239, 240, 0.425)">
  2.     <div class="row">
  3.         <div class="col-md-5">
  4.             <select name="Empresa_ID" id="empresa" class="form-control">
  5.                 <option value=""> -- Selecionar Empresa -- </option>
  6.                 @foreach($listaEmpresas as $empresa)
  7.                     <option value="{{ $empresa->Empresa_ID }}"> {{ $empresa->Empresa_Razaosocial }}</option>
  8.                 @endforeach
  9.             </select>
  10.         </div>
  11.         <div class="col-md-1">
  12.             <a href="{{route('cadastroEmpresa')}}" id="AdicionarEmpresaRapido" class="btn btn-success new-item" data-toggle="tooltip" data-placement="top" title="Adicionar Empresa Rápido">
  13.                 <div class="Center">
  14.                     <span class="glyphicon glyphicon-plus"></span>
  15.                 </div>
  16.             </a>
  17.         </div>
  18.     </div>
  19.     <div class="chart">
  20.         <canvas id="areaChart" style="height: 19px; width: 627px;" width="627" height="35"></canvas>
  21.     </div>
  22. </div>
  23. <div class="container-fluid">
  24.     <table id="Tabela_Modulo" width="100%" class="table table-bordered table-hover table-striped tabela">
  25.         <thead>
  26.             <tr>
  27.                 <th> Modulo </th>
  28.                 <th style="width:150px !important;"> Selecionar Modulo </th>
  29.             </tr>
  30.         </thead>
  31.         <tbody>
  32.             @foreach($listaModulos as $modulo)
  33.                 <tr>
  34.                     <td> {{$modulo->Modulo_Nome}}</td>
  35.                     <td style="white-space: nowrap; text-align: center;"> <input id="checkbox" type="checkbox" data-empresa="{{$modulo->Modulo_ID}}" name="Modulo_ID[]" value="{{$modulo->Modulo_ID}}" style="width: 25px; height: 25px;"> </td>
  36.                 </tr>
  37.             @endforeach
  38.         </tbody>
  39.     </table>
  40. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement