@extends('layouts.master') @section('content')
{{ $post->created_at->toFormattedDateString() }} by {{ $post->user->name }}
@foreach($post->comments as $comment)-
{{ $comment->created_at->diffForHumans() }}
:
{{ $comment->body }}
@endforeach