Foreach is when you want to do something for every row that's returned (without using a break etc). If you just need 2-3, you can use an index key;
{{ $example[0]->value1 }}
{{ $example[1]->value1 }}
If you explain more on what you want to accomplish, there may be a better way or foreach is fine.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community