@extends('layouts.customer') @section('title', __('Support')) @section('page-title', __('Support')) @section('content')
{{ __('Create tickets and view replies from the support team.') }}
| {{ __('Subject') }} | {{ __('Status') }} | {{ __('Priority') }} | {{ __('Last update') }} | {{ __('Actions') }} |
|---|---|---|---|---|
|
{{ $ticket->subject }}
#{{ $ticket->id }}
|
@php $badge = $ticket->status === 'closed' ? 'bg-gray-100 text-gray-800 dark:bg-gray-700 dark:text-gray-300' : 'bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200'; @endphp {{ ucfirst($ticket->status) }} | {{ ucfirst($ticket->priority) }} | {{ ($ticket->last_message_at ?? $ticket->updated_at)->diffForHumans() }} |
|
| {{ __('No tickets yet.') }} @customercan('support.permissions.can_create_tickets') {{ __('Create one') }} @endcustomercan | ||||