<?php echo Notification::success('This is a success message'); ?> it display twice:
`
This is a success message
This is a success message
`
What if I just want to put that success message without have to write HTML code or define the Notification before? I possible to change this behavior? right now I have to do this to show the alert correctly:
``
Thanks in advance, I hope you get what I mean :)
When I write this:
<?php echo Notification::success('This is a success message'); ?>
it display twice:`