update on wormhole controller

This commit is contained in:
2020-02-08 21:49:31 -06:00
parent adb52cd062
commit 8ced378e34

View File

@@ -142,7 +142,7 @@ class WormholeController extends Controller
$dateTime = Carbon::now()->subDays(2);
//Get all of the wormholes from the last 48 hours from the database to display
$wormholes = AllianceWormholes::where('created_at', '>=', $dateTime)->get();
$wormholes = AllianceWormhole::where('created_at', '>=', $dateTime)->get();
return view('wormholes.display')->with('wormholes', $wormholes);
}