Skip to content

Instantly share code, notes, and snippets.

@TiagoSilvaPereira
Created April 18, 2020 16:41
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 TiagoSilvaPereira/ca4fdd93f4bf70e25d5b09d0c5b7ba12 to your computer and use it in GitHub Desktop.
Save TiagoSilvaPereira/ca4fdd93f4bf70e25d5b09d0c5b7ba12 to your computer and use it in GitHub Desktop.
Users View
@extends('layouts.app')
@section('content')
<table class="table">
<tr>
<th>Name</th>
<th>Email</th>
</tr>
@foreach ($users as $user)
<tr>
<td>{{ $user->name }}</td>
<td>{{ $user->email }}</td>
</tr>
@endforeach
</table>
{{ $users->links() }}
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment