Advertisement
JoanMarcos

Untitled

May 23rd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.44 KB | None | 0 0
  1. //essa
  2.  
  3. <div class="box box-primary" id="Tabela_Consulta">
  4.     <div class="box-header with-border" style="background-color: rgba(234, 239, 240, 0.425)">
  5.         <h3 class="box-title">Filtro</h3>
  6.  
  7.         <div class="box-tools pull-right">
  8.             <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>        
  9.         </div>
  10.     </div>
  11.     <div class="box-body" style="background-color: rgba(234, 239, 240, 0.425)">
  12.         <div class="form-group input-group divconsulta">            
  13.             <select name="Empresa_ID" class="form-control" style="width: 150%;">
  14.                 <option value=""> -- Selecionar Empresa -- </option>
  15.                 @foreach($listaEmpresas as $empresa)
  16.                     <option value="{{ $empresa->Empresa_ID }}"> {{ $empresa->Empresa_Razaosocial }}</option>
  17.                 @endforeach
  18.             </select>
  19.         </div>
  20.         <div class="chart">
  21.             <canvas id="areaChart" style="height: 35px; width: 627px;" width="627" height="35"></canvas>
  22.         </div>
  23.     </div>
  24.    
  25.     <div class="container-fluid">
  26.         <table width="100%" id="Tabela_Usuario" class="table table-bordered table-hover table-striped tabela">
  27.             <thead>
  28.                 <tr>
  29.                     <th>Usuario</th>
  30.                     <th>Email</th>
  31.                     <th>CPF</th>
  32.                     <th>Data de Cadastro</th>
  33.                     <th> </th>
  34.                 </tr>
  35.             </thead>
  36.  
  37.             <tbody>
  38.                 @foreach($listaUsuarios as $usuario)
  39.                     <tr>
  40.                         <td> {{ $usuario->Usuario_Nome }}</td>
  41.                         <td> {{ $usuario->Usuario_Email }} </td>
  42.                         <td> {{ $usuario->Usuario_Cpf }} </td>
  43.                         <td> {{ $usuario->Usuario_Datadecriacao }} </td>
  44.                         <td style="white-space: nowrap; text-align: center;">
  45.                             <a  style=" margin: 1% " class="btn btn-success edit-btn" value="{{$usuario->Usuario_ID}}"> <li class="fa fa-file-archive-o"></li> </a>
  46.                             <a  style=" margin: 1% " class="btn btn-danger remove-btn"  value="{{$usuario->Usuario_ID}}" data-toggle="modal" data-target="#destroy-item"> <li class="fa fa-trash-o"></li> </a>
  47.                         </td>
  48.                     </tr>
  49.                 @endforeach
  50.             </tbody>
  51.         </table>
  52.     </div>
  53. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement