$object->getId(), 'booking_ids' => $object->getBookingIds() ]; } /** * @return array */ protected function rules(): array { return [ 'id' => 'required|integer', 'booking_ids' => 'required|array|min:1', ]; } /** * @return array */ protected function messages(): array { return []; } }