@extends('web.default.panel.layouts.panel_layout')
@section('content')
{{ trans('update.blog_statistics') }}
{{ trans('update.articles') }}
@foreach($posts as $post)
{{ trans('public.title') }}
{{ trans('public.category') }}
{{ trans('panel.comments') }}
{{ trans('update.visit_count') }}
{{ trans('public.status') }}
{{ trans('public.date_created') }}
@endforeach
{{ $post->title }}
{{ $post->category->title }}
{{ $post->comments_count }}
{{ $post->visit_count }}
@if($post->status == 'publish')
{{ trans('public.published') }}
@else
{{ trans('public.pending') }}
@endif
{{ dateTimeFormat($post->created_at, 'j M Y H:i') }}