2023-08-29 12:36:17 +00:00
|
|
|
<?php
|
|
|
|
|
2023-12-07 18:06:32 +00:00
|
|
|
namespace App\Livewire;
|
2023-08-29 12:36:17 +00:00
|
|
|
|
|
|
|
use App\Models\Project;
|
|
|
|
use App\Models\Server;
|
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Dashboard extends Component
|
|
|
|
{
|
2023-10-10 08:56:11 +00:00
|
|
|
public $projects = [];
|
|
|
|
public $servers = [];
|
2023-08-29 12:36:17 +00:00
|
|
|
public function mount()
|
|
|
|
{
|
2023-10-10 08:56:11 +00:00
|
|
|
$this->servers = Server::ownedByCurrentTeam()->get();
|
2023-10-11 08:08:37 +00:00
|
|
|
$this->projects = Project::ownedByCurrentTeam()->get();
|
2023-08-29 12:36:17 +00:00
|
|
|
}
|
2023-09-04 14:03:11 +00:00
|
|
|
// public function getIptables()
|
|
|
|
// {
|
|
|
|
// $servers = Server::ownedByCurrentTeam()->get();
|
|
|
|
// foreach ($servers as $server) {
|
|
|
|
// checkRequiredCommands($server);
|
|
|
|
// $iptables = instant_remote_process(['docker run --privileged --net=host --pid=host --ipc=host --volume /:/host busybox chroot /host bash -c "iptables -L -n | jc --iptables"'], $server);
|
|
|
|
// ray($iptables);
|
|
|
|
// }
|
|
|
|
// }
|
2023-08-29 12:36:17 +00:00
|
|
|
public function render()
|
|
|
|
{
|
|
|
|
return view('livewire.dashboard');
|
|
|
|
}
|
|
|
|
}
|