This commit is contained in:
2018-11-18 21:17:58 -06:00
parent 0a90eb006d
commit 618ca6f903

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]);
dd($scopes[0]['scope']);
return view('scopes.select')->with('scopes', $scopes);
}