create(); $device = Device::factory()->create([ 'user_id' => $user->id, 'last_refreshed_at' => now()->subMinutes(5), ]); $response = actingAs($user) ->get(route('devices.configure', $device)); $response->assertOk() ->assertSee('5 minutes ago'); });