Updated to Laravel 9, small fixes, and more
This commit is contained in:
parent
6fc52ee512
commit
9fd844ae1a
24 changed files with 5589 additions and 2557 deletions
|
@ -41,7 +41,7 @@ class HomeController extends Controller
|
|||
|
||||
public function photo() {
|
||||
$photos = DB::table('actionfotos')
|
||||
->join('attractions', 'attractions.id', '=', 'actionfotos.ride')
|
||||
->join('attraction', 'attraction.id', '=', 'actionfotos.ride')
|
||||
->where('actionfotos.uuid', '=', Auth::user()->uuid)
|
||||
->select('actionfotos.base64')
|
||||
->get()->all();
|
||||
|
|
Reference in a new issue