@if($timeline->type == "user" && $timeline_post == true)
@include('socialite::partials/create-post', compact('timeline','user_post'))
@endif
@if($posts->count() > 0)
@foreach($posts as $post)
@include('socialite::partials/post',compact('post','timeline','next_page_url'))
@endforeach
@else
{{ trans('socialite::messages.no_posts') }}
@endif