날짜를 몇시간 전, 며칠 전 형태로 표시하기

Submitted by river - 등록 10 years ago - 수정 10 years ago

페이스북이나 트위터 등의 타임라인에서는 보통 등록시간을 몇분 전, 며칠 전 같은 형태로 표시를 한다. Laravel에서는 Carbon 클래스를 사용하면 쉽게 구현할 수 있다.

<?php

use Carbon\Carbon;

$user = User::find(2);
echo $user->created_at->diffForHumans(Carbon::now());
?>

19 days before
comments powered by Disqus