How do I get the difference of time in human readable format with Laravel 5?

前端 未结 2 508
梦毁少年i
梦毁少年i 2020-12-30 20:48

I want to display the difference between the current date and time with the one stored in the updated_at column. However, I want it to be human-friendly like:

2条回答
  •  时光说笑
    2020-12-30 21:40

    incase of the date is in a string format, use laravel Carbon; e.g,

     {{ \Carbon\Carbon::parse($on_revision->assignment->deadline)->diffForhumans() }}
    

    Notice how I wrap my string in the carbon::parse()

提交回复
热议问题