create(); Note::Factory()->create(['note' => 'hello world']); $response = $this->get('/search?q=hello'); $response->assertStatus(200); $response->assertViewIs('search'); $response->assertViewHas('search'); $response->assertViewHas('notes'); $response->assertSee('hello world'); } }