dym-sh/resources/views/articles.blade.php

12 lines
218 B
PHP
Raw Normal View History

2024-08-09 13:52:23 +02:00
<x-layout-dashboard>
2024-08-09 11:32:31 +02:00
<ol>
@foreach($articles as $article)
<li><a href="/{{ $article['slug'] }}">{{ $article['title'] ?? $article['slug'] }}</a>
@endforeach
</ol>
2024-08-09 13:52:23 +02:00
// todo other lists; stats
</x-layout-dashboard>