@extends('emails.layouts.base') @section('content')
{{ $intro }}
@endif @if (! empty($details)) @include('emails.partials.details-box', [ 'title' => $detailsTitle ?? __('Ticket Details'), 'details' => $details, 'primaryColor' => $primaryColor, ]) @endif @if (! empty($bodyHtml))|
{!! $bodyHtml !!}
|
{{ __('Attachments:') }} {{ implode(', ', $attachments) }}
@endif @include('emails.partials.button', [ 'url' => $actionUrl, 'text' => $actionText, 'primaryColor' => $primaryColor, 'primaryForeground' => $primaryForeground, ]) @if (! empty($footer)){{ $footer }}
@endif @endsection