@extends('Email::layout') @section('content')
@if($reply->user_id == $ticket->customer_id)

{{__("Hello")}} {{$ticket->customer->display_name ?? ''}}

@else

{{__("Hello")}} {{$ticket->agent->display_name ?? ''}}

@endif

{{__('You got new reply for ticket: #')}}{{$ticket->id}} - {{$ticket->title}}

{{__("Reply content:")}}

{!! nl2br(clean($reply->content)) !!}

{{__('You can check the ticket here:')}} {{__('View ticket')}}


{{__('Regards')}},
{{setting_item('site_title')}}

@endsection