@extends('layouts.app') @section('content')
@include('layouts.sidebar')
@if (Auth::check() && $user->id === Auth::id())
@include('posts.create')
@endif @if ($posts->count() > 0) @foreach($posts as $post) @include('posts.include.single') @endforeach @else

Ten użytkownik nie ma żadnych postów

@endif
{{ $posts }}
@endsection