servers = Server::ownedByCurrentTeam()->get()->count(); $this->s3s = S3Storage::ownedByCurrentTeam()->get()->count(); $projects = Project::ownedByCurrentTeam()->get(); foreach ($projects as $project) { $this->resources += $project->applications->count(); $this->resources += $project->postgresqls->count(); } $this->projects = $projects->count(); } // 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); // } // } public function render() { return view('livewire.dashboard'); } }