Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created September 8, 2020 14:43
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 cursosdesarrolloweb/c00f3cc8e2d07b8ca92b4e737948b14d to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/c00f3cc8e2d07b8ca92b4e737948b14d to your computer and use it in GitHub Desktop.
<html>
<head>
<link rel="stylesheet" href="{{ asset("css/app.css") }}" />
</head>
<body>
<p class="text-center text-5xl">Listado de usuarios</p>
<div class="flex justify-center bg-gray-100">
<ul class="list-inside text-white p-5 bg-gray-600 px-4 py-4">
@foreach($usuarios as $usuario)
<li class="py-2">{{ $usuario->name }}</li>
@endforeach
</ul>
</div>
<div class="flex justify-center bg-gray-100">
<div class="text-center m-2">
{{ $usuarios->links() }}
</div>
</div>
</body>
<script src="{{ asset("js/app.js") }}"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment