<table> <thead> <tr> <th>Title</th> <th>Content</th> </tr> </thead> <tbody> @foreach ($posts as $post) <tr> <td>{{ $post->title }}</td> <td>{{ $post->content }}</td> </tr> @endforeach </tbody> </table>
info at phpclasses dot org