- Changed the projects property in the Dashboard component from an array to a Collection for improved data handling. - Added new color variables in CSS for better theming options. - Updated button styles across various components for consistency and improved user experience. - Refined dropdown and notification components for better visual alignment and usability.
30 lines
629 B
PHP
30 lines
629 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 Collection $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 render()
|
|
{
|
|
return view('livewire.dashboard');
|
|
}
|
|
}
|