This commit is contained in:
Joao Patricio
2023-05-03 07:40:12 +01:00
16 changed files with 709 additions and 144 deletions

View File

@@ -93,6 +93,7 @@ class ProjectController extends Controller
if (!$application) {
return redirect()->route('dashboard');
}
$activity = Activity::query()
->where('properties->type', '=', 'deployment')
->where('properties->uuid', '=', $deployment_uuid)

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers;
use App\Models\Server;
use Illuminate\Http\Request;
class ServerController extends Controller
{
public function show(Server $server)
{
return view('server.show', [
'server' => $server,
]);
}
}