forge/resources/views/components/mod-list-section.blade.php

8 lines
232 B
PHP
Raw Normal View History

2024-05-17 23:54:03 -04:00
@foreach ($sections as $section)
@include('components.mod-list-section-partial', [
'title' => $section['title'],
'mods' => $section['mods'],
'versionScope' => $section['versionScope'],
])
@endforeach