35 lines
811 B
PHP
35 lines
811 B
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use App\Models\PrivateKey;
|
|
use App\Models\Project;
|
|
use App\Models\Server;
|
|
use Illuminate\Support\Collection;
|
|
use Livewire\Component;
|
|
|
|
class Dashboard extends Component
|
|
{
|
|
public $projects = [];
|
|
|
|
public Collection $servers;
|
|
|
|
public Collection $privateKeys;
|
|
|
|
public function mount()
|
|
{
|
|
$this->privateKeys = PrivateKey::ownedByCurrentTeam()->get();
|
|
$this->servers = Server::ownedByCurrentTeam()->get();
|
|
$this->projects = Project::ownedByCurrentTeam()->get();
|
|
}
|
|
|
|
public function navigateToProject($projectUuid)
|
|
{
|
|
return $this->redirect(collect($this->projects)->firstWhere('uuid', $projectUuid)->navigateTo(), navigate: false);
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.dashboard');
|
|
}
|
|
}
|