parent
commit
d332e8f11c
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      app/Models/Project.php

+ 0
- 2
app/Models/Project.php View File

@@ -80,8 +80,6 @@ class Project extends Model
80 80
 
81 81
     public function firstListImgUrl(): Attribute
82 82
     {
83
-        \Log::info(empty($this->img_url),$this->img_url);
84
-        \Log::info(Storage::url($this->img_url[0]));
85 83
         return Attribute::make(
86 84
             get: fn ($value) => !empty($this->img_url) ? Storage::url($this->img_url[0]) : null,
87 85
         );