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); + } +}