You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.5 KiB
42 lines
1.5 KiB
@extends('layouts.plantilla')
|
|
|
|
@section('titulo')
|
|
Modulo Usuarios
|
|
@endsection
|
|
|
|
|
|
@section('contenido')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12 p-5">
|
|
<h1>Usuarios</h1>
|
|
</div>
|
|
<div class="col-12">
|
|
<div class="bg-light rounded h-100 p-4">
|
|
<a href="{{route('usuarios.create')}}" class="btn btn-primary">Crear Usuario</a>
|
|
<div class="table-responsive">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">Nombre</th>
|
|
<th scope="col">Correo</th>
|
|
<th scope="col">Fecha</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($users as $item)
|
|
<tr>
|
|
<th scope="row">{{$item->id}}</th>
|
|
<td>{{$item->name}}</td>
|
|
<td>{{$item->email}}</td>
|
|
<td>{{$item->created_at}}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|