belongsTo(StudentProfile::class, 'student_id'); } /** * All invoice line items associated with this invoice. */ public function items(): HasMany { return $this->hasMany(InvoiceItem::class); } }