Deep dive into the configuration and assets associated with this component.
| 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 |
<?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');
}
}
<?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');
});
index.blade.php
Length: 27439 chars