Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 31, 2020 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/bef309cf86dcc9154cf6e359dcdaa8b0 to your computer and use it in GitHub Desktop.
Save uno-de-piera/bef309cf86dcc9154cf6e359dcdaa8b0 to your computer and use it in GitHub Desktop.
@extends('layouts.app')
@section('title', 'Listado Usuarios')
@section('content')
<div class="container">
<div class="row">
<table class="table table-bordered">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
@forelse($users as $user)
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->name }}</td>
<td>{{ $user->email }}</td>
<td>
<a class="edit" href="/users/{{$user->id}}">
Detail
</a>
</td>
</tr>
@empty
<tr>
<td colspan="3">No hay usuarios</td>
</tr>
@endforelse
</tbody>
</table>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment