This commit is contained in:
2018-12-30 02:09:37 -06:00
parent 07e5964ec1
commit 66259c63d6

View File

@@ -46,11 +46,10 @@ class AdminController extends Controller
//Get the user and permission from the form
$user = $request->user;
$permission = $request->permission;
var_dump($user);
var_dump($permission);
//Get the character id from the username using the user table
$character = DB::table('users')->where(['name' => $user])->get();
//Check to see if the character already has the permission
if(!UserPermission::where(['character_id' => $character->character_id, 'permission' => $permission])->exists()) {
$perm = new UserPermission;