From d1462c1539372ad2b33ae31adaddc69327815060 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Sun, 20 Sep 2026 11:21:47 +0530 Subject: [PATCH] Added characteristic value model file --- app/Models/CharacteristicValue.php | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 app/Models/CharacteristicValue.php diff --git a/app/Models/CharacteristicValue.php b/app/Models/CharacteristicValue.php new file mode 100644 index 0000000..abad9d0 --- /dev/null +++ b/app/Models/CharacteristicValue.php @@ -0,0 +1,47 @@ +belongsTo(Plant::class); + } + + public function line(): BelongsTo + { + return $this->belongsTo(Line::class); + } + + public function item(): BelongsTo + { + return $this->belongsTo(Item::class); + } + + public function machine(): BelongsTo + { + return $this->belongsTo(Machine::class); + } +}