PM-Vorschau: Workflow oben + farbig, Metadaten, saubere Inhalts-Typografie

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Kevin Adametz 2026-06-12 15:16:52 +00:00
parent b7145512a7
commit 5a8da0c1f4
6 changed files with 318 additions and 44 deletions

View file

@ -264,6 +264,7 @@ test('customer press release detail shows assigned contacts and status history',
'title' => 'Alpha Detailmeldung',
'status' => PressReleaseStatus::Review->value,
'hits' => 1234,
'keywords' => 'Energie, Wasserstoff',
]);
$contact = Contact::factory()->create([
'company_id' => $company->id,
@ -288,12 +289,18 @@ test('customer press release detail shows assigned contacts and status history',
LivewireVolt::test('customer.press-releases.show', ['id' => $pressRelease->id])
->assertSee('Alpha Detailmeldung')
->assertSee('Status-Workflow')
->assertSee('Zugeordnete Pressekontakte')
->assertSee('Paula Presse')
->assertSee('paula@example.test')
->assertSee('Status & Verlauf')
->assertSee('In Pruefung')
->assertSee('1.234')
->assertSee('Portal')
->assertSee('Kategorie')
->assertSee('Themen')
->assertSee('Energie')
->assertSee('Wasserstoff')
->assertSee('Zur Prüfung eingereicht')
->assertSee('durch Kunden Nutzer');
});