Manage your application modules
Total Modules
{{ $total }}
Active
{{ $active }}
Installed
{{ $installed }}
{{ $module['alias'] }}
{{ Str::limit($module['description'] ?? 'No description available', 80) }}
Depends on: @foreach($module['requires'] as $req) @php $isInstalled = in_array(strtolower($req), $installedModules); @endphp @if($isInstalled) ✓ @else ✗ @endif {{ $req }}{{ !$loop->last ? ', ' : '' }} @endforeach
Create your first module using the command below
php artisan module:make ModuleName