Files
autocrm/resources/views/tenant/suspended.blade.php
T
Vasyka 7077fff3b3 feat(i18n): convert 38 hardcoded static labels + safe blade wrap + 226 keys
- Convert all remaining static \$modelLabel/\$pluralModelLabel to getter
  methods with __() (AppointmentResource, WorkOrderResource, MasterResource,
  ServiceTemplateResource, LaborResource, and 33 others)
- Safe blade wrap v2 (37 files, 201 wraps): fixed the regex to not match
  `->`, `=>`, `!<` — previous aggressive pass broke @if directives
- Bulk-translate lowercase model-label keys (programări, fișe lucru,
  tehnicieni, șabloane servicii, norme-ore, etc.) — these were the RO
  strings appearing in page titles/breadcrumbs
- Add human RU/EN for mechanic-kpi (Mecanic/Lucrări/Norma ore/etc.)
  and calendar-board words

Tests 306 green. Blade compiles cleanly.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-07-15 06:17:10 +00:00

22 lines
970 B
PHP

<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{{ $company->name ?? 'Cont' }} Cont suspendat</title>
<style>
body { font-family: system-ui, sans-serif; margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #fafafa; color: #1f2937; }
.card { max-width: 480px; padding: 40px; background: white; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,.06); text-align: center; }
h1 { font-size: 1.5rem; margin: 0 0 .5rem; color: #b91c1c; }
p { line-height: 1.6; color: #4b5563; }
</style>
</head>
<body>
<div class="card">
<h1>{{ __('⛔ Cont suspendat') }}</h1>
<p>{{ __('Contul') }} <b>{{ $company->name }}</b> {{ __('a fost suspendat.') }}</p>
<p>{{ __('Pentru detalii, contactați administratorul platformei.') }}</p>
</div>
</body>
</html>