From 6fc52ee51224a3a73b809bc79717b90d8edd26d2 Mon Sep 17 00:00:00 2001 From: Stijn Bannink Date: Sun, 4 Sep 2022 20:48:29 +0200 Subject: [PATCH] Fixed another typo --- app/Http/Controllers/HomeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index eff3203..3f4acc8 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -41,7 +41,7 @@ class HomeController extends Controller public function photo() { $photos = DB::table('actionfotos') - ->join('attractions', 'attraction.id', '=', 'actionfotos.ride') + ->join('attractions', 'attractions.id', '=', 'actionfotos.ride') ->where('actionfotos.uuid', '=', Auth::user()->uuid) ->select('actionfotos.base64') ->get()->all();