@extends('layouts.nova') @section('content')
@if(session('status'))
{{ session('status') }}
@endif @foreach($results as $ar) @php $artId = (int)($ar->id ?? 0); $nid = (int)($artId / 100); $picture = rawurlencode($ar->picture ?? ''); @endphp @endforeach
Thumb Name Author Date Dls Views Zoom Rating
{{ $ar->name }} @if(auth()->check() && auth()->id() == ($ar->user_id ?? null))
@csrf
@endif {{ $ar->name }}
{{ $ar->uname ?? '' }} {{ is_string($ar->datum) ? date('d.m.Y', strtotime($ar->datum)) : '' }} {{ (int)($ar->dls ?? 0) }} {{ (int)($ar->views ?? 0) }} {{ e($ar->zoom ?? '') }} {{ e($ar->rating ?? '') }}
{{-- Simple pagination controls --}} @php $pages = (int) ceil($total / $hits); @endphp @if($pages > 1) @endif
@endsection