@extends('layouts.app') @section('content') @if (count($posts) > 0 )
@foreach ($posts as $post)
winking
{!!$post->title!!}

{!!$post->body!!} read more

@endforeach @else

no post found

@endif @endsection