Added app store pagination
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user