@extends('layout.with-main-and-sidebar') @section('title') Reports - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('page', 'page__staff-report--show') @section('main') @if ($report->torrent)

{{ __('torrent.torrent') }} {{ __('torrent.title') }}

{{ $report->title }}
@endif @if ($report->request)

{{ __('torrent.torrent-request') }} {{ __('request.title') }}

{{ $report->title }}
@endif

{{ __('common.message') }}

{{-- format-ignore-start --}}
{{ $report->message }}
{{-- format-ignore-end --}}
@if (count($urls) > 0)

Referenced links:

@endif @if ($report->solved)

Verdict

{{-- format-ignore-start --}}
{{ $report->verdict }}
{{-- format-ignore-end --}}
@else

Resolve {{ __('common.report') }}

@csrf @method('PATCH') @livewire('bbcode-input', ['name' => 'verdict', 'label' => 'Verdict', 'required' => true])

@endif @endsection @section('sidebar')

{{ __('common.info') }}

ID
{{ $report->id }}
{{ __('ticket.category') }}
{{ $report->type }}
{{ __('common.created_at') }}
{{ $report->created_at->format('Y-m-d') }}
{{ __('common.reporter') }}
Reported
@if ($report->solved_by !== null)
Solved by
{{ __('ticket.closed') }}
@endif

{{ __('common.actions') }}

@csrf

@if ($report->assigned_to !== null)
@csrf @method('DELETE')

@endif

Snooze

@if ($report->snoozed_until !== null)
Snoozed until
{{ $report->snoozed_until }}
@endif
@if ($report->snoozed_until === null)
@csrf

@else
@csrf @method('DELETE')

@endif
@endsection