Laravel отношения пустые, неправильно определены? - PullRequest
0 голосов
/ 12 апреля 2020

После небольшого перерыва я хотел продолжить свой собственный проект. Тем не менее, я сижу здесь уже два часа и не знаю, что я делаю неправильно или где моя ошибка.

Итак, у меня есть пользователи, которые могут создавать продукты, комментировать и лайкать комментарии. Однако, когда я хочу получить все продукты или комментарии, которые опубликовал пользователь, или все комментарии, которые ему понравились, я всегда получаю отношение hasMany без содержимого (я позвонил $user->products() в блейд панели, который вызывается UserController) :

    Illuminate\Database\Eloquent\Relations\HasMany {#662 ▼
      #foreignKey: "products.user_id"
      #localKey: "id"
      #query: Illuminate\Database\Eloquent\Builder {#656 ▶}
      #parent: App\User {#654 ▶}
      #related: App\Product {#663 ▼
        #with: array:1 [▶]
        #connection: "mysql"
        #table: null
        #primaryKey: "id"
        #keyType: "int"
        +incrementing: true
        #withCount: []
        #perPage: 15
        +exists: false
        +wasRecentlyCreated: false
        #attributes: []
        #original: []
        #changes: []
        #casts: []
        #dates: []
        #dateFormat: null
        #appends: []
        #dispatchesEvents: []
        #observables: []
        #relations: []
        #touches: []
        +timestamps: true
        #hidden: []
        #visible: []
        #fillable: []
        #guarded: array:1 [▶]
      }
}

Может кто-нибудь сказать мне, где я допустил ошибку?

Модель пользователя:

class User extends Authenticatable
{
    use Notifiable;
    use HasRoles;
    use HasSettingsField;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];

    /**
     * Get the products record associated with the user.
     */
    public function products()
    {
        return $this->hasMany('App\Product');
    }

    /**
     * Get the comments record associated with the user.
     */
    public function comments()
    {
        return $this->hasMany('App\Comment');
    }

    /**
     * Get the comment likes record associated with the user.
     */
    public function commentlikes()
    {
        return $this->hasMany('App\CommentLike');
    }
}

Модель продукта:

    class Product extends Model
    {

    /**
     * The relationships that should always be loaded.
     *
     * @var array
     */
    protected $with = ['comments'];

    /**
     * Get the user that owns the product.
     */
    public function user()
    {
        return $this->belongsTo('App\User');
    }
}

Модель комментария:

/**
 * Display the specified resource.
 *
 * @param  int  $id
 * @return \Illuminate\Http\Response
 */
public function show(User $user)
{
    return view('pages.userDashboard')->with([
        'user' => $user
    ]);
}

1 Ответ

2 голосов
/ 12 апреля 2020

Я думаю, что доступ к нему, как свойство будет делать. Не вызывайте его как метод, если вы это сделаете, он будет вызывать метод.

$user->products;

$user->comments;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...