28 lines
638 B
PHP
28 lines
638 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<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>
|
|
|
|
<div class="pagination-wrapper">
|
|
{{ $articles->links() }}
|
|
</div>
|
|
@endsection
|