From cf3120eb68ef88eb6fd2f92ea765ef25297c90ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Thu, 23 Aug 2018 23:02:28 +0200 Subject: [PATCH] show table authors in the favourites listing --- app/Http/Controllers/ProfileController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index a40f362..619b34a 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -57,6 +57,7 @@ class ProfileController extends Controller ->tableSort($data['tableSort']) ->paginate(10); + $data['showAuthors'] = true; return view('profile.view', $data); }