mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 09:51:37 +00:00
18 lines
316 B
PHP
18 lines
316 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');
|
|
}
|
|
}
|