From 040ba1d88faa7fa475bd64e8632abcfce974c8dd Mon Sep 17 00:00:00 2001 From: Stijn Bannink Date: Sun, 4 Sep 2022 20:39:35 +0200 Subject: [PATCH] Fixed 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 f2327e8..eff3203 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('attraction', 'attraction.id', '=', 'actionfotos.ride') + ->join('attractions', 'attraction.id', '=', 'actionfotos.ride') ->where('actionfotos.uuid', '=', Auth::user()->uuid) ->select('actionfotos.base64') ->get()->all();