From 30cf8203ef432a11e385e5a1a2ecb7075ef6853c Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 7 Apr 2026 17:28:35 +0530 Subject: [PATCH] Added production characteristics model file --- app/Models/ProductionCharacteristic.php | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 app/Models/ProductionCharacteristic.php diff --git a/app/Models/ProductionCharacteristic.php b/app/Models/ProductionCharacteristic.php new file mode 100644 index 0000000..39cbb46 --- /dev/null +++ b/app/Models/ProductionCharacteristic.php @@ -0,0 +1,50 @@ +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); + } +}