@include('layouts.front.styles')
@include('layouts.front.header') @include('layouts.front.navigation')
@if (count($posts))
@foreach ($posts as $post)

{{ $post->title }}

{!! old('body') ?? $post->body !!}

{{ $post->created_at->diffForHumans() }}

@if (count($post->pdfs)) @foreach ($post->pdfs as $pdf) Download @endforeach @endif
@endforeach
@else
No matched results found
@endif @include('layouts.front.footer') @include('layouts.front.scripts') @stack('front.scripts')