Skip to content
Advertisement

Laravel, How to view array in foreach loop

I want to view the loop of array in blade view, in my view i want print the array items. I tried with this but it doesn’t work

JavaScript

the array:

JavaScript

Advertisement

Answer

It’s an array not object so you need to do {{ $slot['value'] }} not {{ $slot->value }}

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement