This commit is contained in:
2021-02-13 03:27:59 +09:00
parent d54bb575ba
commit 7a63f1370f

View File

@@ -107,6 +107,8 @@ class Esi {
$scopesArr = EsiScope::where([
'character_id' => $token->character_id,
])->get()->toArray();
dd($scopesArr);
//Create string separated by %20 = space from the array of scopes
$scopes = implode(" ", $scopesArr);
$scopes = str_replace(" ", "%20", $scopes);