Update ArticlesController.php

This commit is contained in:
2020-08-18 01:31:28 +05:00
parent 6a4e4084aa
commit e264ab11a1

View File

@@ -15,7 +15,7 @@ class ArticlesController extends Controller
public function show(Article $article)
{
return view('articles.show', [
'article' => $article->load('topics','source')
'article' => $article
]);
}
}