3
0
Fork 0

Fixed another typo

This commit is contained in:
Stijn Bannink 2022-09-04 20:48:29 +02:00 committed by GitHub
parent 040ba1d88f
commit 6fc52ee512
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ class HomeController extends Controller
public function photo() { public function photo() {
$photos = DB::table('actionfotos') $photos = DB::table('actionfotos')
->join('attractions', 'attraction.id', '=', 'actionfotos.ride') ->join('attractions', 'attractions.id', '=', 'actionfotos.ride')
->where('actionfotos.uuid', '=', Auth::user()->uuid) ->where('actionfotos.uuid', '=', Auth::user()->uuid)
->select('actionfotos.base64') ->select('actionfotos.base64')
->get()->all(); ->get()->all();