EVOLUTION-MANAGER
Edit File: 1f79b5f55381f3cd397dc5d63a0a21ebab141f4d.php
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="<?php echo e(asset('css/sidebar-administrador.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/fontello.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/usuarios-admin.css')); ?>"> <title>Patronato del Cantón Sucre</title> </head> <body> <?php echo $__env->make('partials.sidebar-administrador', \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?> <section class="home-section"> <div class="home-content"> <i class="icon-menu"></i> <span class="text">Minimizar menu</span> </div> <details open> <summary>Lista de Usuarios Administradores</summary> <div class="contenedor-usuarios-online"> <table class="tabla-actividad tabla-total-noticas"> <thead style="text-align: justify;"> <tr> <th>Nombre</th> <th>Cédula</th> <th>Email</th> <th>Fecha de creación</th> <th>Fecha de modificación</th> </tr> </thead> <tbody> <?php $__currentLoopData = $users; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($data->name); ?></td> <td><?php echo e($data->cedula); ?></td> <td><?php echo e($data->email); ?></td> <td><?php echo e($data->created_at); ?></td> <td><?php echo e($data->updated_at); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </details> </section> <script src="<?php echo e(asset('js/navbar-administrador.js')); ?>"></script> </body> </html>