debugging

This commit is contained in:
2018-11-10 14:57:01 -06:00
parent bbe2274837
commit ede9e40e1d
+2 -2
View File
@@ -48,9 +48,9 @@ class User extends Authenticatable
//Used in middleware to make sure a user is able to access many of the pages
public function hasRole($role)
{
dd(auth()->user()->character_id);
//Get the roles from the user_roles table
$checks = DB::table('user_roles')->where(['character_id' => auth()->user()->character_id])->get();
//$checks = User::roles()->get();
dd($checks);
foreach($checks as $check) {
if($check['role'] == $role) {
return true;