@extends('layouts.app') @section('content')
@if (Auth::check())
You are logged in! @include('posts.create')
@endif
@foreach($posts as $post) @include('posts.include.single') @endforeach
{{ $posts }}
@endsection