@extends('emails.layout')
@section('title', 'MVNexus Notification')
@php
$emailLocale = $locale ?? app()->getLocale();
@endphp
@section('content')
{!! nl2br(e($content)) !!}
@if(isset($data['action_url']) && isset($data['action_text']))
{{ $data['action_text'] }}
@endif
@if(isset($data['details']) && is_array($data['details']))
@foreach($data['details'] as $label => $value)
| {{ $label }} |
{{ $value }} |
@endforeach
@endif
@if(isset($data['footer_note']))
{{ $data['footer_note'] }}
@endif
@endsection