@extends('layouts.nova') @section('content')

{{ $ar->headline }}

{!! $ar->tekst !!}

User Comments

@foreach($comments as $comment) @php $local_date = date('j.F.y @ H:i:s', strtotime($comment->datum)); $user_id = $comment->user_id ?? null; @endphp
@if(!empty($comment->user_id) && !empty($comment->icon))
@endif
Posted by: {{ $comment->author }}
Posts: {{ $postCounts[$comment->author] ?? 0 }}
 {{ $local_date }}
{!! $comment->tekst !!}
@if(!empty($comment->signature)) {!! nl2br(e($comment->signature)) !!} @endif

@endforeach @php $status = $_SESSION['web_login']['status'] ?? false; $user_type = $_SESSION['web_login']['user_type'] ?? 0; @endphp @if(!$status || $user_type < 2)

Please login first

@else

Write comment

@csrf
@endif


@php \App\Banner::ShowBanner300x250(); @endphp

@if(!empty($ar->username)) @php $username = DB::table('users')->where('uname', $ar->username)->value('uname'); @endphp
{{ $username }} Gallery (random order):

@foreach($artworks as $artwork) @php $nid = (int)($artwork->id / 100); @endphp

@endforeach @endif
@endsection