This commit is contained in:
2018-11-18 21:18:54 -06:00
parent 618ca6f903
commit 38d2ecb286

View File

@@ -25,7 +25,7 @@ class EsiScopeController extends Controller
//Get the ESI Scopes for the user
$scopes = DB::table('EsiScopes')->where('character_id', Auth::user()->character_id)->get();
//We want to send the scopes to the page as pre-checked.
dd($scopes[0]['scope']);
dd($scopes[0]->scope);
return view('scopes.select')->with('scopes', $scopes);
}