2

ここからボイジャー管理者を正常にインストールしました

クライアント ページで、auth から派生したカスタム登録を作成しました。無事にユーザー登録できました。

voyager admin をインストールした後、クライアントの登録フォームに新しいユーザーを追加しました。次に、にアクセスしようとするhttp://localhost:8000/adminと、画像に見られるようにエラーが発生しました。

ここに画像の説明を入力

以下は53行目の画像です。

ここに画像の説明を入力

以下は、VoyagerUse.php のコード全体です。

<?php

namespace TCG\Voyager\Traits;

use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException;
use TCG\Voyager\Facades\Voyager;
use TCG\Voyager\Models\Role;

/**
 * @property  \Illuminate\Database\Eloquent\Collection  roles
 */
trait VoyagerUser
{
public function role()
{
    return $this->belongsTo(Voyager::modelClass('Role'));
}

/**
 * Check if User has a Role(s) associated.
 *
 * @param string|array $name The role to check.
 *
 * @return bool
 */
public function hasRole($name)
{
    if (!$this->relationLoaded('role')) {
        $this->load('role');
    }

    return in_array($this->role->name, (is_array($name) ? $name : [$name]));
}

public function setRole($name)
{
    $role = Voyager::model('Role')->where('name', '=', $name)->first();

    if ($role) {
        $this->role()->associate($role);
        $this->save();
    }

    return $this;
}

public function hasPermission($name)
{
    if (!$this->relationLoaded('role')) {
        $this->load('role');
    }

    if (!$this->role->relationLoaded('permissions')) {
        $this->role->load('permissions');
    }

    return in_array($name, $this->role->permissions->pluck('key')->toArray());
}

public function hasPermissionOrFail($name)
{
    if (!$this->hasPermission($name)) {
        throw new UnauthorizedHttpException(null);
    }

    return true;
}

public function hasPermissionOrAbort($name, $statusCode = 403)
{
    if (!$this->hasPermission($name)) {
        return abort($statusCode);
    }

    return true;
}
}
4

2 に答える 2

0

Voyager は role という名前のリレーションも追加するため、role という名前の属性の名前を変更するだけです。

于 2019-02-16T08:16:09.437 に答える