mirror of
https://github.com/ConvoyPanel/panel.git
synced 2026-07-05 11:04:20 +08:00
19 lines
368 B
PHP
19 lines
368 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Client\Servers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Server;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class BackupController extends Controller
|
|
{
|
|
public function index(Server $server)
|
|
{
|
|
return Inertia::render('servers/backups/Index', [
|
|
'server' => $server
|
|
]);
|
|
}
|
|
}
|