belongsTo(Branch::class); } public function type(): BelongsTo { return $this->belongsTo(CollectionType::class, 'collection_type_id'); } public function items(): HasMany { return $this->hasMany(CollectionItem::class); } }