diff --git a/app/Models/ItemCharacteristic.php b/app/Models/ItemCharacteristic.php new file mode 100644 index 0000000..4f19891 --- /dev/null +++ b/app/Models/ItemCharacteristic.php @@ -0,0 +1,175 @@ +belongsTo(Plant::class); + } + + public function item(): BelongsTo + { + return $this->belongsTo(Item::class); + } +}