@extends('emails.layout') @section('title', $title ?? 'Admin Notification') @section('content')

Hello Admin,

{{ $introLine ?? 'An event has occurred that requires your attention.' }}

@if(isset($user))

User Details:

Name: {{ $user->name ?? 'N/A' }}

Email: {{ $user->email ?? 'N/A' }}

@endif @if(isset($detailsBox))
@foreach($detailsBox as $label => $value)

{{ $label }}: {{ $value }}

@endforeach
@endif @if(isset($actionUrl) && isset($actionText))

{{ $actionText }}

@endif

Best regards,
{{ $appName ?? config('app.name') }}

@endsection