From 82d99a8161c56b3e0d9107be9a2e233b4bae4bdf Mon Sep 17 00:00:00 2001 From: pacnpal <183241239+pacnpal@users.noreply.github.com> Date: Wed, 26 Feb 2025 13:00:23 -0500 Subject: [PATCH] refactor: remove Company model as it is no longer needed --- app/Models/Company.php | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 app/Models/Company.php diff --git a/app/Models/Company.php b/app/Models/Company.php deleted file mode 100644 index e6999e9..0000000 --- a/app/Models/Company.php +++ /dev/null @@ -1,34 +0,0 @@ -hasMany(Park::class, 'owner_id'); - } - - public function updateStatistics() - { - // Implementation matching Django's Company.update_statistics() - $this->loadCount('parks'); - $this->save(); - } -} \ No newline at end of file