20 lines
423 B
PHP
20 lines
423 B
PHP
<h1>Articles</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>URL</th>
|
|
<th>Created At</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($articles as $article)
|
|
<tr>
|
|
<td>{{ $article->id }}</td>
|
|
<td>{{ $article->url }}</td>
|
|
<td>{{ $article->created_at->format('Y-m-d H:i') }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|