@php $title = \App\Models\PlatformSetting::renderTemplate('email_tmpl_creator_notification_title', [], $notificationTitle ?? '🥂 New Support Alert!'); $btnText = \App\Models\PlatformSetting::renderTemplate('email_tmpl_creator_notification_btn', [], 'View in Creator Studio ↗'); @endphp @extends('emails.layout', ['subject' => $title]) @section('content')

{{ $title }}

{!! nl2br(e($notificationMessage)) !!}

@if(!empty($actionUrl))
{{ $btnText }}
@endif @endsection