@extends('layouts.public') @section('title', 'Support — SYSTRONICS') @section('meta_description', 'Your SYSTRONICS support requests.') @section('content') @include('public.partials.page-chrome', [ 'eyebrow' => 'Support', 'title' => 'My support requests', 'lede' => 'Review your existing support requests. To reach the SYSTRONICS Support Team, email us from Get Support.', 'crumbs' => [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Get Support', 'url' => route('public.support')], ['label' => 'My support requests'], ], 'tools' => [ ['label' => 'Get Support', 'url' => route('public.support')], ['label' => 'My requests', 'url' => route('portal.support.index'), 'active' => true], ], ])
@forelse ($tickets as $ticket) {{ $ticket->product_name ?: ('Support #'.$ticket->id) }} #{{ $ticket->id }} · {{ $ticket->modeLabel() }} · {{ $ticket->submitted_at?->format('Y-m-d H:i') ?: '—' }} View @empty

No support requests yet.

@endforelse
{{ $tickets->links() }}
@endsection