@extends('layouts.app') @section('content')
{{-- @include('home.photo-partial', ['tags' => $tags])--}} @include('home.blog-partial') @foreach($posts as $post)

{{$post->title}}

{{$post->content}}
Continue reading...
Blog Entry
{{$post->created_at->format('Y-m-d')}}
@foreach($post->tags as $tag) {{$tag->name}}, @endforeach

@endforeach
@include('layouts.sidebar')
@endsection