Automated PR created by Copilot per user request. Branch pushed: 266-tenant-dashboard-productization-v1 Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #322
17 lines
501 B
Diff
17 lines
501 B
Diff
--- app/Filament/Pages/TenantDashboard.php
|
|
+++ app/Filament/Pages/TenantDashboard.php
|
|
@@ -54,8 +54,10 @@
|
|
|
|
public function getTitle(): string
|
|
{
|
|
- return __('localization.dashboard.overview.page_title');
|
|
+ $tenant = Filament::getTenant();
|
|
+ return $tenant ? $tenant->name : 'YPTW2';
|
|
}
|
|
|
|
public function getSubheading(): ?string
|
|
{
|
|
- return __('localization.dashboard.overview.page_subheading');
|
|
+ return 'Tenant-Governance-Übersicht';
|
|
}
|