父節點
當前提交
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
         );