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
14 lines
863 B
PHP
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";
|