@if ($posts->isNotEmpty())
@foreach ($posts as $post) @endforeach
# {{ trans('core/base::tables.name') }} {{ trans('core/base::tables.created_at') }}
{{ $loop->index + 1 }} @if ($post->slug) {{ Str::limit($post->name, 80) }} @else {{ Str::limit($post->name, 80) }} @endif {{ BaseHelper::formatDate($post->created_at) }}
@else @include('core/dashboard::partials.no-data', [ 'message' => trans('plugins/blog::posts.no_new_post_now'), ]) @endif