@extends('design_1.panel.layouts.panel') @push('styles_top') @endpush @section('content') @if(!empty($posts) and !$posts->isEmpty())

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

{{-- Filters --}} @include('design_1.panel.forum.posts.filters') {{-- List Table --}}
@foreach($posts as $postRow) @include('design_1.panel.forum.posts.table_items', ['post' => $postRow]) @endforeach
{{ trans('public.topic') }} {{ trans('update.forum') }} {{ trans('update.replies') }} {{ trans('public.publish_date') }}
{{-- Pagination --}}
@else @include('design_1.panel.includes.no-result',[ 'file_name' => 'forum_posts.svg', 'title' => trans('update.panel_topics_posts_no_result'), 'hint' => nl2br(trans('update.panel_topics_posts_no_result_hint')), 'extraClass' => 'mt-0', ]) @endif @endsection @push('scripts_bottom') @endpush