@extends('front::layouts.master', ['title' => trans('front::messages.posts.blog') ]) @push('meta') @endpush @section('content') {{ trans('front::messages.posts.home') }} {{ trans('front::messages.posts.blog') }} @if($posts->count()) @foreach ($posts as $post) {{ $post->category ? $post->category->title : trans('front::messages.posts.uncategorized') }} {{ $post->title }} {{ jdate($post->created_at)->format('%d %B %Y') }} @endforeach @else {{ trans('front::messages.posts.there-is-nothing-to-show') }} @endif {{ $posts->links('front::components.paginate') }} @include('front::posts.partials.sidebar') @endsection
{{ trans('front::messages.posts.there-is-nothing-to-show') }}