@extends('layouts.legacy') @section('content')
Avatar

{{ $artwork->name }}

By {{ $artwork->uname }}


@if(!empty($artwork->description))
{!! nl2br(e($artwork->description)) !!}
@endif {{-- Comments --}} @if(!empty($comments) && $comments->count() > 0)

Comments:

@foreach($comments as $comment)
{{ \Illuminate\Support\Str::limit($comment->date, 16) }}
Comment by: {{ $comment->uname }}
{!! nl2br(e($comment->description)) !!}
@if(!empty($comment->signature)) @endif
@endforeach @endif @auth
@csrf

Write comment


@endauth
@if(auth()->check()) Add To Favourites @endif

Details

Category{{ $artwork->category_name ?? '' }}
Uptime{{ \Illuminate\Support\Str::limit($artwork->datum ?? '', 10) }}
Submitted{{ optional(\Carbon\Carbon::parse($artwork->datum))->format('d.m.Y') }}
Resolution{{ ($artwork->width ?? '') . 'x' . ($artwork->height ?? '') }}

Statistics

Views{{ $artwork->views ?? 0 }}
Downloads{{ $artwork->dls ?? 0 }} @if(!empty($num_downloads)) ({{ $num_downloads }} today)@endif

Social

@endsection