create(['note' => 'Note 1']); Article::factory()->create(['title' => 'Article 1']); Bookmark::factory()->create(['url' => 'https://example.com']); Like::factory()->create([ 'url' => 'https://example.org/1', 'content' => 'Like 1', ]); $this->get('/') ->assertSee('Note 1') ->assertSee('Article 1') ->assertSee('https://example.com') ->assertSee('Like 1'); } }