actingAs(User::factory()->create()) ->get(route('models.index')) ->assertForbidden(); } public function testUserCanListAssetModels() { $this->actingAs(User::factory()->superuser()->create()) ->get(route('models.index')) ->assertOk(); } }