Эта строка содержит последние 5 статей.
$articles = Article::orderBy('id', 'desc')->limit(5)->get();
Вам необходимо передать его в представление. Пример:
return view('dashboard', ['articles' => $articles]);
И l oop статьи в таблице файлов лезвий. Пример:
<table class="table">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Title</th>
<th scope="col">Author</th>
<th scope="col">Date</th>
</tr>
</thead>
<tbody>
@foreach($articles as $article)
<tr>
<th scope="row">{{ $article->id }}</th>
<td>{{ $article->title }}</td>
<td>{{ $article->author }}</td>
<td>{{ $article->created_at }}</td>
</tr>
@endforeach
</tbody>
</table>