mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-03 23:04:18 +08:00
19 lines
363 B
PHP
19 lines
363 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin\Nodes;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Node;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class SettingsController extends Controller
|
|
{
|
|
public function index(Node $node)
|
|
{
|
|
return Inertia::render('admin/nodes/settings/Index', [
|
|
'node' => $node,
|
|
]);
|
|
}
|
|
}
|