From e8b2c17427edef9d95746d1c5298c927f6400979 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 4 Aug 2026 15:20:22 +0530 Subject: [PATCH] Added item characteristic model file --- app/Models/ItemCharacteristic.php | 175 ++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 app/Models/ItemCharacteristic.php 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); + } +}