TenantAtlas/apps/platform/revert.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

11 lines
804 B
PHP

<?php
$file = 'resources/views/filament/widgets/dashboard/tenant-dashboard-overview.blade.php';
$content = file_get_contents($file);
$content = str_replace('border border-gray-200 bg-white', 'bg-white shadow-sm ring-1 ring-gray-950/5', $content);
$content = str_replace('border border-gray-200 bg-gray-50', 'bg-gray-50 ring-1 ring-gray-950/5', $content);
$content = str_replace("rounded-xl border p-4", "rounded-xl p-4 ring-1 ring-inset", $content);
$content = str_replace("default => 'border-gray-200 bg-white", "default => 'ring-gray-950/5 bg-white", $content);
$content = str_replace("'danger' => 'border-danger-200", "'danger' => 'ring-danger-200", $content);
$content = str_replace("'warning' => 'border-warning-200", "'warning' => 'ring-warning-200", $content);
file_put_contents($file, $content);