@extends('layouts.frontend.app') @section('content')
@if($posts->count() > 0) @foreach ($posts as $post)

{{ $post->title}}

{!! Str::limit($post->body, 100) !!}
@endforeach
{{ $posts->links() }}
@else

No Post available

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