I'm trying to loop through rows in a views-view template, but I can't seem to kint or dump anything out to help me in doing so.
I've tried following various other answers, such as:
- In Drupal 8 view.html.twig file how do I access the view content such as individual field title and/or field content?
- How to get each field value in views-views-unformatted--view-machine-name.html.twig?
Again, without any success.
Usually I'd create a views-view-fields template, and access my fields via fields.title.content for example. I need to loop through them via the views-view template, as I'm needing to do some checks, taking into account values of some of the previous row's fields.
How can I access a rows fields when looping through rows in my views-view template?