Skip to content

Undefined variable '$adminModel' in AuthServiceProvider #172

@Jhulianogs

Description

@Jhulianogs

In the boot function of the AuthServiceProvider is set $adminModel variable, but it's not being sent to Gate::before.

$adminModel = config('multiauth.models.admin');
$this->registerPolicies();
Gate::before(function ($admin, $ability) {
if ($admin instanceof $adminModel) {
if ($this->isSuperAdmin($admin)) {
return true;
}
return $admin->hasPermission($ability);
}
});

Solution: add use ($adminModel)

$adminModel = config('multiauth.models.admin');
$this->registerPolicies();
Gate::before(function ($admin, $ability) use ($adminModel) {
if ($admin instanceof $adminModel) {
if ($this->isSuperAdmin($admin)) {
return true;
}
return $admin->hasPermission($ability);
}
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions