select scopes

This commit is contained in:
2018-11-18 22:36:52 -06:00
parent 38d2ecb286
commit 84d996ddac
2 changed files with 121 additions and 2 deletions

View File

@@ -24,8 +24,6 @@ class EsiScopeController extends Controller
public function displayScopes() {
//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);
return view('scopes.select')->with('scopes', $scopes);
}