TenantAtlas/apps/platform/patch_aside.php
Ahmed Darrazi beebbaefbe
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 5m58s
chore: commit all local changes
2026-05-03 16:00:44 +02: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";