admincontroller

This commit is contained in:
2018-12-30 02:10:29 -06:00
parent 66259c63d6
commit 09912d80c1

View File

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