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

All Post

@if($posts->count() > 0) @foreach ($posts as $post)
{{ $post->created_at->diffForHumans() }}
@endforeach
{{ $posts->links() }}
@else

NO Post available

@endif
@include('layouts.frontend.partials.sidebar')
@endsection