From 076125485d95c28a40a608ad3e5214b28209c27a Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Thu, 25 Apr 2024 22:36:36 -0400 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20need=20to=20specify=20this=20pa?= =?UTF-8?q?ram?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Models/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Server.php b/app/Models/Server.php index 172317437..0aacf3ad4 100644 --- a/app/Models/Server.php +++ b/app/Models/Server.php @@ -236,7 +236,7 @@ class Server extends Model */ public function allocations(): HasMany { - return $this->hasMany(Allocation::class, 'server_id'); + return $this->hasMany(Allocation::class); } /**