@extends('layouts.public') @section('title', 'Support #'.$ticket->id.' — SYSTRONICS') @section('meta_description', 'Support request #'.$ticket->id) @section('content') @include('public.partials.page-chrome', [ 'eyebrow' => 'Support', 'title' => $ticket->product_name ?: ('Support #'.$ticket->id), 'lede' => 'Request #'.$ticket->id, 'crumbs' => [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'My support requests', 'url' => route('portal.support.index')], ['label' => '#'.$ticket->id], ], 'tools' => [ ['label' => 'Get Support', 'url' => route('public.support')], ['label' => 'My requests', 'url' => route('portal.support.index')], ], ])
Submitted
{{ $ticket->submitted_at?->format('Y-m-d H:i') ?: '—' }}
Mode
{{ $ticket->modeLabel() }}
Contact
{{ $ticket->contactName() }} <{{ $ticket->contact_email }}>
Version / build
{{ $ticket->product_version ?: '—' }} / {{ $ticket->product_build ?: '—' }}
Database
{{ $ticket->db_info }}
OS
{{ $ticket->os_info }}
Sage apps
{{ $ticket->sage_applications ?: '—' }}
Deployment
{{ $ticket->sage_deployment ?: '—' }}
Description
{{ $ticket->description }}
@if ($ticket->attachments->isNotEmpty())

Attachments

@endif
@endsection