@extends('front.template') @section('main')
{!! Form::open(['url' => 'blog/search', 'method' => 'get', 'role' => 'form', 'class' => 'pull-right']) !!} {!! Form::control('text', 12, 'search', $errors, null, null, null, trans('front/blog.search')) !!} {!! Form::close() !!}
@foreach($posts as $post)

{{ $post->title }}
{{ $post->user->username }} {{ trans('front/blog.on') }} {!! $post->created_at . ($post->created_at != $post->updated_at ? trans('front/blog.updated') . $post->updated_at : '') !!}

{!! $post->summary !!}

{!! link_to('blog/' . $post->slug, trans('front/blog.button'), ['class' => 'btn btn-default btn-lg']) !!}
@endforeach
{!! $links !!}
@stop