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