Blade curly braces are basically PHP echo function, so act accordingly
1. = {{ $forum }} / 2. = {{ $php }} / 3. = {{ $framework }}
Calling a variable without the $
dollar sign is reserved for constants and you haven't defined such constants
Here's what happens in the background of this Blade line
1. = <?php echo e(forum); ?> / 2. = <?php echo e(php); ?> / 3. = <?php echo e(framework); ?>
<?php /**PATH resources/views/welcome.blade.php ENDPATH**/ ?>
You can see that forum
, php
and framework
are called as constants here, while you want to output variables
1. = <?php echo e($forum); ?> / 2. = <?php echo e($php); ?> / 3. = <?php echo e($framework); ?>
<?php /**PATH resources/views/welcome.blade.php ENDPATH**/ ?>
Hope this helps