41 lines
		
	
	
		
			945 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			945 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Livewire\Project;
 | |
| 
 | |
| use App\Models\PrivateKey;
 | |
| use App\Models\Project;
 | |
| use App\Models\Server;
 | |
| use Livewire\Component;
 | |
| 
 | |
| class Index extends Component
 | |
| {
 | |
|     public $projects;
 | |
| 
 | |
|     public $servers;
 | |
| 
 | |
|     public $private_keys;
 | |
| 
 | |
|     public function mount()
 | |
|     {
 | |
|         $this->private_keys = PrivateKey::ownedByCurrentTeam()->get();
 | |
|         $this->projects = Project::ownedByCurrentTeam()->get()->map(function ($project) {
 | |
|             $project->settingsRoute = route('project.edit', ['project_uuid' => $project->uuid]);
 | |
| 
 | |
|             return $project;
 | |
|         });
 | |
|         $this->servers = Server::ownedByCurrentTeam()->count();
 | |
|     }
 | |
| 
 | |
|     public function render()
 | |
|     {
 | |
|         return view('livewire.project.index');
 | |
|     }
 | |
| 
 | |
|     public function navigateToProject($projectUuid)
 | |
|     {
 | |
|         $project = collect($this->projects)->firstWhere('uuid', $projectUuid);
 | |
| 
 | |
|         return $this->redirect($project->navigateTo(), true);
 | |
|     }
 | |
| }
 | 
