| 123456789101112131415161718192021222324252627 | <?phpnamespace App\Models;use Illuminate\Database\Eloquent\Model;class Remark extends Model{    protected $table = 'remarks';    protected $guarded = [];    public function teacher()    {        return $this->belongsTo('App\Models\Teacher');    }    public function student()    {        return $this->belongsTo('App\Models\Student');    }    public function course()    {        return $this->belongsTo('App\Models\Course');    }}
 |