Rename route attribute to settingsRoute attribute.

This commit is contained in:
MarioCake
2024-10-10 09:45:13 +02:00
parent 62e67eff89
commit 76d631d7ba
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ class Index extends Component
{
$this->private_keys = PrivateKey::ownedByCurrentTeam()->get();
$this->projects = Project::ownedByCurrentTeam()->get()->map(function ($project) {
$project->route = route('project.edit', ['project_uuid' => $project->uuid]);
$project->settingsRoute = route('project.edit', ['project_uuid' => $project->uuid]);
return $project;
});