peterguo 2 months ago
parent
commit
8e93719ad8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Http/Resources/API/NamingRuleSimpleResource.php

+ 2 - 2
app/Http/Resources/API/NamingRuleSimpleResource.php

@@ -15,8 +15,8 @@ class NamingRuleSimpleResource extends JsonResource
     public function toArray(Request $request): array
     {
         return [
-            'id' => $this->id,
-            'name' => $this->name,
+            'id' => $this?->id,
+            'name' => $this?->name,
         ];
     }
 }