Component Details

Deep dive into the configuration and assets associated with this component.

Basic Information
Name plugins
Display Name Plugin Manager
Version 1.0.0
Status Active
Downloads 76
Description Component: Plugin Manager
Created 2025-11-11 20:42:10
Controller Code
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class PluginsController extends Controller
{
    /**
     * Display the plugins marketplace.
     */
    public function index()
    {
        return view('components.plugins.index');
    }
}

Routes Code
<?php

use Illuminate\Support\Facades\Route;
use App\Http\Controllers\PluginsController;

Route::middleware(['auth', 'component.visible'])->group(function () {
    Route::get('/plugins', [PluginsController::class, 'index'])->name('dashboard.plugins');
});

Views (1)
  • index.blade.php Length: 27439 chars