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.
47 lines
1.4 KiB
47 lines
1.4 KiB
@extends('layouts.plantilla')
|
|
|
|
@section('titulo')
|
|
modulo de usuario
|
|
@endsection
|
|
@section('contenido')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-m1-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">nuevo</a>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">#</th>
|
|
<th scope="col">nombre</th>
|
|
<th scope="col">Email</th>
|
|
<th scope="col">fecha</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach ($user 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>
|
|
</div>
|
|
@endsection
|
|
|
|
|
|
|