'required|integer|exists:accounts,id', ]; } /** * Destroy all photos in an account. * * @param array $data * @return bool */ public function execute(array $data): bool { $this->validate($data); $photos = Photo::where('account_id', $data['account_id']) ->get(); foreach ($photos as $photo) { $photo->delete(); } return true; } }