fedi-feed-router/resources/views/pages/articles/index.blade.php
2025-06-29 18:33:18 +02:00

24 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