From d46819a79d9d86f09735deb1609cc477aad1cf83 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 24 Feb 2026 13:06:01 +0530 Subject: [PATCH] Added customer po master model file --- app/Models/CustomerPoMaster.php | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 app/Models/CustomerPoMaster.php 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); + } +}