make([ 'calories' => NULL, 'fat' => NULL, 'cholesterol' => NULL, 'sodium' => NULL, 'carbohydrates' => NULL, 'protein' => NULL, ]); $store_url = action([FoodController::class, 'store']); $response = $this->followingRedirects()->post($store_url, $food->toArray()); $response->assertOk(); $response->assertSee("Food {$food->name} updated!"); } }