Support the development of TastyIgniter Learn more
Hi,
is it possbile to make if queries for variables in email template (administration)
f.e
@if($order_comment) lorem ipsum @endif
thx for your help
Yes, the templates are written in blade so that is exactly how you do it.
I am getting the Error that $order_comment is not defined
my code: @if($order_comment) Abholzeit: {order_comment}<br> @endif
@if (isset($order_comment)) Abholzeit: {{ $order_comment }}<br> @endif
great THANKS!