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