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

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

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