'required|integer|exists:accounts,id', 'place_id' => 'required|integer|exists:places,id', ]; } /** * Destroy a place. * * @param array $data * @return bool */ public function execute(array $data): bool { $this->validate($data); $place = Place::where('account_id', $data['account_id']) ->findOrFail($data['place_id']); $place->delete(); return true; } }