* @created 2022-06-29 16:02:15 * @modified 2022-06-29 16:02:15 */ namespace Beike\Admin\Http\Controllers; use Beike\Plugin\Manager; class PluginController extends Controller { /** * @throws \Exception */ public function index() { $data['plugins'] = (new Manager)->getPlugins(); return view('admin::pages.plugins.index', $data); } }