TenantAtlas/apps/platform/patch_aside.php
ahmido 3aeb0d04b8 Auto: 266-tenant-dashboard-productization-v1 → platform-dev (#322)
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
2026-05-03 14:03:46 +00:00

14 lines
863 B
PHP

<?php
$content = file_get_contents('/Users/ahmeddarrazi/Documents/projects/wt-plattform/apps/platform/resources/views/filament/widgets/dashboard/tenant-dashboard-overview.blade.php');
$search = ' <div class="flex min-w-0 flex-col gap-6">
<x-filament::section :heading="__(\'localization.dashboard.overview.section_readiness\')">';
$replace = ' <!-- Right Column (Aside) -->
<div class="flex min-w-0 flex-col gap-6 xl:col-span-4">
<x-filament::section :heading="__(\'localization.dashboard.overview.section_readiness\')">';
$newContent = str_replace($search, $replace, $content);
file_put_contents('/Users/ahmeddarrazi/Documents/projects/wt-plattform/apps/platform/resources/views/filament/widgets/dashboard/tenant-dashboard-overview.blade.php', $newContent);
echo "Done\n";