@extends('layouts.app') @section('title', 'تذكرة ' . $ticket->reference) @section('page_title', 'التذكرة ' . $ticket->reference) @section('page_subtitle', $ticket->subject) @section('page_actions') @if (auth()->user()->hasPermission('tickets.close')) @endif @endsection @section('content')
{!! nl2br(e($ticket->description ?? '—')) !!}
@if ($ticket->resolution){!! nl2br(e($ticket->resolution)) !!}
@endif