@extends('modulemanager::layouts.master') @section('title', 'Module Marketplace') @section('content') @if(!config('module_manager.marketplace_api_url'))

Marketplace API URL Not Configured

To access the module marketplace, you need to configure the marketplace API URL in the settings.

Go to Settings
@else
@forelse($availableModules as $module)
@if(isset($module['thumbnail'])) {{ $module['name'] }} @endif
{{ $module['name'] }}

v{{ $module['version'] }} @if(isset($module['price'])) ${{ $module['price'] }} @else Free @endif

{{ $module['description'] ?? 'No description available' }}

Author: {{ $module['author'] ?? 'Unknown' }}

@empty
No modules available in the marketplace at the moment.
@endforelse
@endif @endsection