@extends('layouts.app') @section('content')

Recent Posts

@if (isset($posts) && $posts->count() > 0) @foreach ($posts as $post)
{{ $post->user->name }}
{{ $post->user->name }} {{ $post->created_at->diffForHumans() }}

{{ $post->title }}

{{ $post->body }}

View
@endforeach @else

No Posts Added yet

@endif
{{ $posts->links() }}
@endsection