dashboard

This commit is contained in:
2019-08-06 02:06:45 -05:00
parent 368906787c
commit ac22a31427

View File

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