我该如何正确建立这种雄辩的关系?

时间:2020-01-08 08:13:46

标签: php laravel eloquent eloquent-relationship

我有一个已经为其创建关系的用户模型和一个学生模型,但是当我尝试建立联系时

$ student-> user->全名

我收到此错误

“试图获取非对象的属性全名”

这是我的用户模型代码:

<?php

namespace App;


use App\Assignment;
use App\Model\Quiz;
use App\Model\Course;
use App\Topic;
use App\Model\Guardian;
use App\Model\Student;
use App\Model\Teacher;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Spatie\Permission\Traits\HasRoles;

class User extends Authenticatable implements MustVerifyEmail
{
    use Notifiable, HasRoles, SoftDeletes;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'fullname',
        'email',
        'avatar',
        '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',
    ];

    public function setPasswordAttribute($password)
    {
        $this->attributes['password'] = bcrypt($password);
    }



    public function guardian()
    {
        return $this->belongsTo(Guardian::class);
    }

    public function teacher()
    {
        return $this->belongsTo(Teacher::class);
    }

    public function student()
    {
        return $this->belongsTo(Student::class);
    }

    public function assignments()
    {
        return $this->hasMany(Assignment::class);
    }

    public function quizzes()
    {
        return $this->hasMany(Quiz::class);
    }

    public function courses()
    {
        return $this->hasMany(Course::class);
    }

    public function topics()
    {
        return $this->hasMany(Topic::class);
    }

    public function levels()
    {
        return $this->hasMany(Level::class);
    }
}

这是我的学生模型代码

<?php

namespace App\Model;

use App\User;
use App\Model\Course;
use App\Assignment;
use App\Level;
use App\Model\DoneQuiz;
use App\Model\Teacher;
use App\Model\Guardian;
use Illuminate\Database\Eloquent\Model;

class Student extends Model
{
    protected $fillable = ['user_id', 'level_id', 'guardian_id'];

    public function user()
    {
        return $this->belongsTo(User::class);
    } 

    public function courses()
    {
        return $this->hasMany(Course::class);
    } 

    public function assignments()
    {
        return $this->hasMany(Assignment::class);
    }

    public function level()
    {
        return $this->hasOne(Level::class);
    }

    public function teachers()
    {
        return $this->hasMany(Teacher::class);
    }

    public function guardian()
    {
        return $this->hasOne(Guardian::class);
    }

    public function donequizzes()
    {
        return $this->hasMany(DoneQuiz::class);
    }
}

,甚至当我尝试使用这种关系来获取数据

'student_id'=> auth()-> user()-> student()-> id

我收到此错误

“ BadMethodCallException调用未定义的方法 照亮\ Database \ Eloquent \ Relations \ BelongsTo :: id()“

1 个答案:

答案 0 :(得分:2)

当您使用student()时,它会返回查询生成器

将其更改为简单的学生

'student_id' => auth()->user()->student->id

OR

 'student_id' => auth()->user()->student()->first()->id