@extends('layouts.default') @section('title') Blog @stop @section('top') @stop @section('content')

@if (count($posts) == 0) There are currently no blog posts. @else Here you may find our blog posts: @endif

@auth('blog')
@endauth
@foreach($posts as $post)

{!! $post->title !!}

{!! $post->summary !!}

Show Post @auth('blog') Edit Post Delete Post @endauth


@endforeach {!! $links !!} @stop @section('bottom') @auth('blog') @include('posts.deletes') @endauth @stop