belongsTo(TeacherProfile::class, 'teacher_id'); } /** * Each payable lesson included in this period. */ public function items(): HasMany { return $this->hasMany(TeacherPayItem::class, 'teacher_pay_period_id'); } }