mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
20 lines
325 B
PHP
20 lines
325 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use App\Models\Server;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class ServerLayout extends Component
|
|
{
|
|
public function __construct(public Server $server)
|
|
{
|
|
}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('layouts.server');
|
|
}
|
|
}
|