부모
커밋
e5f4d9aafb
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      app/Models/Project.php

+ 1
- 0
app/Models/Project.php 파일 보기

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