@extends('layouts.main') @section('container')

Latest Post

@if ($posts->count())
@foreach ($posts->take(6) as $post)
{{ $post->category->name }}
{{ $post->title }}

By {{ $post->author->name }} at {{ date('F d, Y', strtotime($post->created_at)) }}

{{ $post->excerpt }}

Read More
@endforeach
@else

No Post Found

@endif
@endsection