@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' }}
{{ $label }}: {{ $value }}
@endforeachBest regards,
{{ $appName ?? config('app.name') }}