Level 3
Do you have created_at in your dates array in the model?
For example:
protected $dates = ['created_at'];
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi,
i have this in my view page, im trying to add 5 days on the created_at in my record to display, but it does not adds up to the created_at date.
Created at
{!! $row->created_at !!}
Will expire on
{!! $row->created_at->addDays(5) !!}
Regards, Ci
Please or to participate in this conversation.