Laravel - Views and Blade Templates
What will be the output of the following Blade snippet?
@php
$count = 3;
for ($i = 1; $i <= $count; $i++) {
echo "Item $i ";
}
@endphp