@extends('emails.templates.default') @section('content')
|
{{ __('email.greeting', ['name' => trim($name)!='' ? $name : 'there']) }} |
|
{{ __('email.event_notification.cancel_message') }} @if (isset($text_message)){{ __('email.event_notification.note') }} {!! nl2br($text_message) !!} @endif |
|
{{ $event_name }} {{ $date_format }} |
| @include('emails.templates.signoff', ['thank_you' => __('email.thank_you'), 'wish' => __('email.wish')]) |