@extends('web.default.panel.layouts.panel_layout') @push('styles_top') @endpush @section('content')

{{ trans('update.filter_posts') }}

{{ trans('update.my_posts') }}

@if($posts->count() > 0)
@foreach($posts as $post) @endforeach
{{ trans('public.topic') }} {{ trans('update.forum') }} {{ trans('update.replies') }} {{ trans('public.publish_date') }}
{{ $post->topic->forum->title }} {{ $post->replies_count }} {{ dateTimeFormat($post->created_at, 'j M Y H:i') }}
@else @include(getTemplate() . '.includes.no-result',[ 'file_name' => 'comment.png', 'title' => trans('update.panel_topics_posts_no_result'), 'hint' => nl2br(trans('update.panel_topics_posts_no_result_hint')), ]) @endif
{{ $posts->appends(request()->input())->links('vendor.pagination.panel') }}
@endsection @push('scripts_bottom') @endpush