@extends('emails.layouts.base') @section('content')

{{ $heading }}

@if (! empty($intro))

{{ $intro }}

@endif @if (! empty($details)) @include('emails.partials.details-box', [ 'title' => $detailsTitle ?? __('Ticket Details'), 'details' => $details, 'primaryColor' => $primaryColor, ]) @endif @if (! empty($bodyHtml))
{!! $bodyHtml !!}
@endif @if (! empty($attachments))

{{ __('Attachments:') }} {{ implode(', ', $attachments) }}

@endif @include('emails.partials.button', [ 'url' => $actionUrl, 'text' => $actionText, 'primaryColor' => $primaryColor, 'primaryForeground' => $primaryForeground, ]) @if (! empty($footer))

{{ $footer }}

@endif @endsection