@extends('emails.layouts.base') @section('content')
{{ $introLine }}
@if($customerName || $customerEmail) @include('emails.partials.details-box', [ 'title' => __('Customer'), 'details' => array_filter([ __('Name') => $customerName, __('Email') => $customerEmail ]), 'primaryColor' => $primaryColor ]) @endif @if(!empty($details)) @include('emails.partials.details-box', [ 'title' => $detailsTitle ?? __('Details'), 'details' => $details, 'primaryColor' => $primaryColor ]) @endif @if($actionUrl) @include('emails.partials.button', [ 'url' => $actionUrl, 'text' => $actionText ?? __('View Dashboard'), 'primaryColor' => $primaryColor, 'primaryForeground' => $primaryForeground ]) @endif @endsection