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