Вам необходимо создать связь между таблицами
В курсе модель
/**
* Get the user that owns the phone.
*/
public function module()
{
return $this->belongsTo('App\Coursemdule');
}
В модели Coursemdule
/**
* Get the Course record associated with the Coursemdule.
*/
public function course()
{
return $this->hasOne('App\Course');
}
Чтобы получить это значение
$phone = Course::find(1)->module;
OR
$phone = Course::with('module')->all();
Надеюсь, это поможет вам.