{{ $ticket->ticket_number }} - {{ $ticket->title }}

@if($ticket->status === 'erledigt' && $ticket->actual_cost) 📄 Rechnung @endif ← ZurĂŒck
{{ $ticket->priority }} {{ $ticket->status_label }}

Kategorie: {{ $ticket->category }}

Mieter

{{ $ticket->tenant?->full_name ?? '-' }}

@if($ticket->unit)

{{ $ticket->unit->property->name }} - {{ $ticket->unit->name }}

@endif

ZustÀndig

{{ $ticket->assigned_to ?? '-' }}

@if($ticket->due_date)

FĂ€llig: {{ $ticket->due_date->format('d.m.Y') }}

@endif
{{-- Fotos --}} @if($ticket->photos->isNotEmpty())

Fotos

@foreach($ticket->photos as $photo) @endforeach
@endif {{-- Beschreibung --}} @if($ticket->description)

Beschreibung

{{ $ticket->description }}

@endif {{-- Status Àndern --}}

Status Àndern

@csrf
{{-- Kommentare --}}

Kommentare ({{ $ticket->comments->count() }})

@foreach($ticket->comments as $comment)

{{ $comment->user->name }} · {{ $comment->created_at->format('d.m.Y H:i') }}

{{ $comment->comment }}

@endforeach
@csrf
{{-- Lösung --}} @if($ticket->resolution)

Lösung

{{ $ticket->resolution }}

@if($ticket->actual_cost)

Kosten: {{ number_format($ticket->actual_cost, 2) }} €

@endif
@endif