@extends('layout.default') @section('title') Reports - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }} @endsection @section('meta') @endsection @section('breadcrumbs') @endsection @section('page', 'page__poll--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')

Reported {{ __('common.user') }}

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

Solved by

@if ($report->solved) @else UNSOLVED @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