dashboard

This commit is contained in:
2019-08-06 02:06:10 -05:00
parent 7ace3b7d91
commit 368906787c

View File

@@ -49,8 +49,6 @@ class DashboardController extends Controller
'main_id' => auth()->user()->character_id,
])->count();
dd($altCount);
//If the alt count is greater than 0 get all of the alt accounts
if($altCount > 0) {
$alts = UserAlt::where([
@@ -58,6 +56,8 @@ class DashboardController extends Controller
])->get();
}
dd($alts);
//See if we can get all of the open SRP requests
$openCount = SRPShip::where([
'character_id' => auth()->user()->character_id,