This commit is contained in:
2018-11-18 21:11:44 -06:00
parent 54ad1a6a4b
commit c39a4ed694

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