Search code examples
phplaravelphp-carbon

CARBON TIME FORMATS


i am using Laravel 5.8 and in database there is a column name last_seen here stored values are in that format (2021-02-05 00:42:14) i want to customise this format on listing of a page just like this (22/04/2021 03:59:54) how can i do that ??


Solution

  • You can try using Carbon DateTime

    Carbon::parse($user->last_visit)->format('d/m/Y H:i:s');