79515637

Date: 2025-03-17 20:04:12
Score: 2
Natty:
Report link

Format datetime in resource or collection with:

// Error with null
'published_at' => $this->published_at->format('Y-m-d H:i:s'),

// No errors
'published_at' => $this->published_at != null ? $this->published_at->format('Y-m-d H:i:s') : null,

// Custom date if null
'published_at' => ($this->published_at ?? now()->addDays(10))->format('Y-m-d H:i:s'),            

Regards

Reasons:
  • Blacklisted phrase (1): Regards
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Noobek