I want to convert time interval in seconds into days hours minutes. I have tried this.
$value = '90060';
CarbonInterval::seconds($value)->forHumans();
I got the output
90060 seconds
My expected output is
1 day 1 hour 1 minute
How can I get the output using Carbon
or CarbonInterval