25 lines
556 B
PHP
25 lines
556 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>
|
||
|
|
@endsection
|