From 6c49e3ce7967dc7120168f1255e482bb9c933ddd Mon Sep 17 00:00:00 2001 From: InsaneTrash Date: Thu, 20 Mar 2025 08:11:15 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20Ex?= =?UTF-8?q?ercise.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Exercise.php | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 Exercise.php diff --git a/Exercise.php b/Exercise.php deleted file mode 100644 index 239450f..0000000 --- a/Exercise.php +++ /dev/null @@ -1,25 +0,0 @@ -belongsToMany(Course::class, 'course_exercise'); - } - public function users() - { - return $this->belongsToMany(User::class, 'exercise_user')->withPivot('completed'); - } - public function getGifUrlAttribute() -{ - return Storage::url($this->gif_path); -} -}