{{-- News and forum columns --}} @php use Carbon\Carbon; use Illuminate\Support\Str; @endphp
{{-- ── LEFT: Forum News ── --}}

Forum News

@forelse ($forumNews as $item)
{{ $item->topic }}
{{ $item->uname }} {{ Carbon::parse($item->post_date)->format('j M Y') }}
@if (!empty($item->preview))

{{ Str::limit(strip_tags($item->preview), 200) }}

@endif
@empty
No forum news available.
@endforelse
{{-- ── RIGHT: Site News + Info + Forum Activity ── --}}
{{-- Site News --}}

Site News

@forelse ($ourNews as $news) @php $nid = floor($news->news_id / 100); @endphp
{{ $news->headline }}
{{ $news->uname }} {{ Carbon::parse($news->create_date)->format('j M Y') }} {{ number_format($news->views) }} {{ $news->num_comments }}
@if (!empty($news->picture))
{{ e($news->headline) }}

{!! Str::limit(strip_tags($news->preview ?? ''), 180) !!}

@else

{!! Str::limit(strip_tags($news->preview ?? ''), 240) !!}

@endif
@empty
No news available.
@endforelse
{{-- About Skinbase --}}

About Skinbase

Skinbase is dedicated to Photography, Wallpapers and Skins for popular applications on Windows, macOS, Linux, iOS and Android. Browse categories, discover curated artwork, and download everything for free.

{{-- Latest Forum Activity --}}

Forum Activity

@forelse ($latestForumActivity as $topic) {{ $topic->topic }} {{ $topic->numPosts }} @empty
No recent forum activity.
@endforelse
{{-- end right column --}}