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

11 lines
477 B
PHP
Raw Normal View History

@props(['mods', 'versionScope', 'title'])
2024-05-17 23:54:03 -04:00
<div class="mx-auto max-w-7xl px-4 pt-16 sm:px-6 lg:px-8">
{{--
TODO: The button-link should be dynamic based on the versionScope. Eg. Featured `View All` button should take
the user to the mods page with the `featured` query parameter set.
--}}
2024-05-17 23:54:03 -04:00
<x-page-content-title :title="$title" button-text="View All" button-link="/mods" />
<x-mod-list :mods="$mods" :versionScope="$versionScope" />
</div>