Tue. Apr 7th, 2026
<small>
    Posted: {{ $post->created_at ? $post->created_at->diffForHumans() : 'Unknown time' }}
</small>


use this in blade view  like this



    <h1>{{$post->title}}</h1>
    <h5>{{$post->content}}</h5>
<small>
    Posted: {{ $post->created_at ? $post->created_at->diffForHumans() : 'Unknown time' }}
</small>

 

Leave a Reply

Your email address will not be published. Required fields are marked *