Fixed another typo
This commit is contained in:
parent
040ba1d88f
commit
6fc52ee512
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('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();
|
||||||
|
|
Reference in a new issue