View file ProForum/Files/application/resources/views/presets/default/components/popular.blade.php

File size: 1.65Kb
<div class="popular-topics-box">
    <h5>@lang('Popular Topics')</h5>
    <div class="popular-card-wraper">
        @foreach ($popular_posts as $post)
            <div class="popular-topics-card">
                <div class="topics-card-meta">
                    <div class="card-auth-info">
                        <a href="{{route('user.profile.details',$post->user?->id)}}">
                            <img src="{{getImage(getFilePath('userProfile') . '/' . @$post->user?->image, getFileSize('userProfile')) }}" alt="avatar">
                            <p class="post-by">@lang('Posted by') <span>{{__(strLimit(@$post->user?->fullname,7))}}</span></p>
                        </a>
                        <i class="fa-solid fa-circle"></i>
                        <p class="time-status">{{__(showDateTime($post->created_at,'d M, Y'))}}</p>
                    </div>
                    <a href="{{route('post.details',$post->id)}}">
                        <h6 class="topics-card-title">{{ __(@$post->title) }} </h6>
                    </a>
                </div>
                <ul>
                    <li>
                        <a href="{{route('post.details',$post->id)}}"><i class="las la-comments"></i>
                            <p>{{number_format_short(@$post->comments?->count())}} @lang('Answers')</p>
                        </a>
                    </li>
                    <li>
                        <i class="las la-eye"></i>
                        <p>{{number_format_short(@$post->views)}} @lang('views')</p>
                    </li>
                </ul>
            </div>
            <hr class="popular-topics-hr">
        @endforeach

    </div>
</div>