Fixed typo
This commit is contained in:
parent
c5da4b9417
commit
040ba1d88f
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class HomeController extends Controller
|
||||||
|
|
||||||
public function photo() {
|
public function photo() {
|
||||||
$photos = DB::table('actionfotos')
|
$photos = DB::table('actionfotos')
|
||||||
->join('attraction', 'attraction.id', '=', 'actionfotos.ride')
|
->join('attractions', 'attraction.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();
|
||||||
|
|
Reference in a new issue