Added app store pagination

This commit is contained in:
cuneytsenturk
2018-09-20 11:16:56 +03:00
parent b8087bf29c
commit 2ea4722dcf
5 changed files with 64 additions and 12 deletions

View File

@ -16,7 +16,7 @@
<h3>{{ trans('modules.top_paid') }}</h3>
</div>
@foreach ($paid as $module)
@foreach ($paid->data as $module)
@include('partials.modules.item')
@endforeach
</div>
@ -26,7 +26,7 @@
<h3>{{ trans('modules.new') }}</h3>
</div>
@foreach ($new as $module)
@foreach ($new->data as $module)
@include('partials.modules.item')
@endforeach
</div>
@ -36,7 +36,7 @@
<h3>{{ trans('modules.top_free') }}</h3>
</div>
@foreach ($free as $module)
@foreach ($free->data as $module)
@include('partials.modules.item')
@endforeach
</div>