belongsTo(Contract::class); } public function template() { return $this->belongsTo(PaymentTemplate::class); } public function items() { return $this->hasMany(PaymentScheduleItem::class, 'schedule_id'); } }