@extends('layout.emails._message-base') @section('header', 'New Customer Message - Ticket ' . $ticket->ticket_id) @section('header_size', '20px') @section('content')
{{ $ticket->user?->name.' '.$ticket->user?->surname }},
A new customer message has been received on Ticket {{ $ticket->ticket_id }}.
| Current Stage | {{ $ticket->pipelineStage?->name }} |
| Priority | {{ $ticket->priority }} |
Dashboard:
{{ route('support.tickets.show', ['ticket'=> $ticket->id, 'tab'=>'conversations']) }}
Customer: {{ $ticket->contact->first_name.' '.$ticket->contact->last_name }} | {{ $ticket->contact->phone_number }}
Last Activity: {{ \Carbon\Carbon::create($ticket->contact->messages()->where('ticket_id', $ticket->id)->latest()->first()->created_at)->diffForHumans() }}
Enterprise Suite Support Team
@endsection @section('footer')support@enterprisesuite.africa | +27 76 648 9390
@endsection