seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_support_ticket_index_page_should_render(): void { $this->loginAsPlatformAdmin(); $res = $this->get('/admin/support-tickets'); $res->assertOk(); $res->assertSee('客服中心', false); $res->assertSee('工单列表', false); } }